compilation

This commit is contained in:
Anatoly Baksheev 2013-11-30 18:02:57 +04:00
parent f9ca6cfd22
commit f62ffa2aea

View File

@ -152,7 +152,7 @@ public:
task = new( tbb::task::allocate_root() ) TBBApproximateSynchronizerTask( *this );
tbb::task::enqueue(*task);
#else
task->reset( new ApproximateSynchronizer( *this ) );
task.reset( new ApproximateSynchronizer( *this ) );
#endif
}