Fix unused variable warning

This commit is contained in:
Vikram Rajkumar 2014-12-23 15:48:56 -05:00
parent 874f103b8d
commit 683f1dd7bf

View file

@ -224,7 +224,7 @@ void simple_task()
BOOST_AUTO_TEST_CASE( cancel_scheduled_task )
{
bool task_executed = false;
//bool task_executed = false;
try
{
simple_task();
@ -238,4 +238,4 @@ BOOST_AUTO_TEST_CASE( cancel_scheduled_task )
wlog( "${e}", ("e",e.to_detail_string() ) );
}
BOOST_CHECK_EQUAL(task_execute_count, 2);
}
}