Simplify Beast:

* Remove asio HTTP classes
 * Remove beast::File, beast::String, beast::Stream, beast::Array,
   beast::MemoryBlock, beast::CriticalSection and other unused
   classes.
 * Remove unused platform-specific code.
 * Reduce Beast custom assert and debugging helper macros.
This commit is contained in:
Nik Bougalis
2016-01-20 12:32:02 -08:00
parent 921b34eafd
commit 958b3a1dc0
117 changed files with 77 additions and 19036 deletions

View File

@@ -18,6 +18,7 @@
//==============================================================================
#include <beast/unit_test/suite.h>
#include <cassert>
namespace beast {
@@ -108,7 +109,7 @@ void Workers::pauseAllThreadsAndWait ()
m_allPaused.wait ();
bassert (numberOfCurrentlyRunningTasks () == 0);
assert (numberOfCurrentlyRunningTasks () == 0);
}
void Workers::addTask ()