diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 new file mode 100644 index 0000000..67009e3 --- /dev/null +++ b/build/Jamfile.v2 @@ -0,0 +1,13 @@ + +project + : + : default-build debug + ; + +lib debug + : #sources + ../src/obj_id.cpp + ../src/object_tracked.cpp + ../src/trace_scope_stk.cpp + ; + diff --git a/src/trace_scope_stk.cpp b/src/trace_scope_stk.cpp new file mode 100644 index 0000000..eb2892c --- /dev/null +++ b/src/trace_scope_stk.cpp @@ -0,0 +1,12 @@ +#include "boost/utility/trace_scope_stk.hpp" +// static + std::vector +utility::trace_scope_stk:: + c_scope_names + ; +// static + std::string const +utility::trace_scope_stk:: + c_test_results[2] + = {"failed", "passed"} + ;