diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2015-07-10 19:44:47 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2015-07-10 19:44:47 -0400 |
commit | 68f42e4e102bd578386aeec3485233e332cbdcff (patch) | |
tree | 21faf4d9147cf89c13cb5845d161d4000daea4c9 /indra/llcommon/tests | |
parent | 9bde72f784a4836c3d19ef4dbcd49d4414640d8e (diff) |
MAINT-5351: Finish cleaning up messy merge from backing out backout
Diffstat (limited to 'indra/llcommon/tests')
-rwxr-xr-x | indra/llcommon/tests/lleventcoro_test.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llcommon/tests/lleventcoro_test.cpp b/indra/llcommon/tests/lleventcoro_test.cpp index b8d9d8002f..00be5035f2 100755 --- a/indra/llcommon/tests/lleventcoro_test.cpp +++ b/indra/llcommon/tests/lleventcoro_test.cpp @@ -264,8 +264,7 @@ namespace tut // Construct the coroutine instance that will run explicit_wait. // Pass the ctor a callable that accepts the coroutine_type::self // param passed by the library. - boost::dcoroutines::coroutine<void()> - coro(explicit_wait); + boost::dcoroutines::coroutine<void()> coro(explicit_wait); // Start the coroutine coro(std::nothrow); // When the coroutine waits for the event pump, it returns here. |