Tidying and fix warnings

This commit is contained in:
seelabs
2016-05-10 21:21:19 -04:00
committed by Vinnie Falco
parent 97b1ac6eab
commit 09c566a6eb
13 changed files with 33 additions and 38 deletions

View File

@@ -35,7 +35,7 @@ private:
std::thread thread_;
std::mutex m_;
std::condition_variable cv_;
bool running_ = false;;
bool running_ = false;
public:
/// The type of yield context passed to functions.
@@ -70,7 +70,7 @@ public:
This call will block until the coroutine terminates.
Function will be called with this signature:
@code
void f(yield_context);
@endcode

View File

@@ -543,7 +543,7 @@ suite::run (runner& r)
#define BEAST_DEFINE_TESTSUITE_INSERT(Class,Module,Library,manual) \
static beast::unit_test::detail::insert_suite <Class##_test> \
Library ## Module ## Class ## _test_instance ( \
#Class, #Module, #Library, manual);
#Class, #Module, #Library, manual)
//------------------------------------------------------------------------------