Index: thread.hpp =================================================================== --- thread.hpp (revision 53346) +++ thread.hpp (working copy) @@ -456,7 +456,7 @@ { virtual ~thread_exit_function_base() {} - virtual void operator()() const=0; + virtual void operator()() =0; }; template @@ -469,7 +469,7 @@ f(f_) {} - void operator()() const + void operator()() { f(); }