Ticket #2742: 2742.patch

File 2742.patch, 587 bytes (added by viboes, 13 years ago)
  • thread.hpp

     
    456456        {
    457457            virtual ~thread_exit_function_base()
    458458            {}
    459             virtual void operator()() const=0;
     459            virtual void operator()() =0;
    460460        };
    461461       
    462462        template<typename F>
     
    469469                f(f_)
    470470            {}
    471471           
    472             void operator()() const
     472            void operator()()
    473473            {
    474474                f();
    475475            }