| Index: compiled/traceInit.cpp |
| diff --git a/compiled/traceInit.cpp b/compiled/traceInit.cpp |
| index 6ff5aa8a908b7c92243a5bcea6ff0647966272df..80eddcf32bf1886ce2a3f44ee8f993c069be1c7e 100644 |
| --- a/compiled/traceInit.cpp |
| +++ b/compiled/traceInit.cpp |
| @@ -17,17 +17,22 @@ |
| #include "debug.h" |
| -struct InitTracing |
| +ABP_NS_USING |
| + |
| +namespace |
| { |
| - InitTracing() |
| + struct InitTracing |
| { |
| - init_tracing(); |
| - } |
| + InitTracing() |
| + { |
| + init_tracing(); |
| + } |
| - ~InitTracing() |
| - { |
| - shutdown_tracing(); |
| - } |
| -}; |
| + ~InitTracing() |
| + { |
| + shutdown_tracing(); |
| + } |
| + }; |
| -InitTracing foo; |
| + InitTracing foo; |
| +} |