2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-19 04:42:13 +00:00

Fix test_366_4.cpp

This commit is contained in:
Peter Dimov
2022-05-14 17:26:50 +03:00
parent 8db325363b
commit 1de55fceda

View File

@@ -12,7 +12,7 @@ static void do_first_half()
std::cout << "Doing first half of the work\n";
boost::this_thread::sleep_for(
boost::chrono::seconds( 10 ) );
boost::chrono::hours( 1 ) );
std::cout << "First half of the work complete\n";
}
@@ -22,7 +22,7 @@ static void do_second_half()
std::cout << "Doing second half of the work\n";
boost::this_thread::sleep_for(
boost::chrono::seconds( 10 ) );
boost::chrono::hours( 1 ) );
std::cout << "Second half of the work complete\n";
}