all repos — fluxbox @ 0e1ee49603a565427fa833a4136c586a0e816c47

custom fork of the fluxbox windowmanager

Fix compilation with intel's compiler

the deleted function was never used, otherwise it would generate an error with other compilers as
well. icc noticed that it was nonsensical even when it wasn't used and complained.
Pavel Labath pavelo@centrum.sk
commit

0e1ee49603a565427fa833a4136c586a0e816c47

parent

755787c437a5b19851744ef40c4df2efdf2d5e05

1 files changed, 0 insertions(+), 4 deletions(-)

jump to
M src/fluxbox.ccsrc/fluxbox.cc

@@ -210,10 +210,6 @@ explicit CallMemFunWithRefArg(ResultType (Type::*func)(ArgType), ArgType arg) :

m_arg(arg), m_func(func) { } - ResultType operator()(Type p) const { - (p.*m_func)(m_arg); - } - ResultType operator()(Type* p) const { (*p.*m_func)(m_arg); }