Minor cleanup.

This commit is contained in:
Axel Dörfler
2012-03-31 10:36:36 +02:00
parent ce17af69dc
commit a300055ed7
@@ -39,6 +39,7 @@
#if BFS_TRACING && !defined(BFS_SHELL) #if BFS_TRACING && !defined(BFS_SHELL)
namespace BFSBlockTracing { namespace BFSBlockTracing {
class Allocate : public AbstractTraceEntry { class Allocate : public AbstractTraceEntry {
public: public:
Allocate(block_run run) Allocate(block_run run)
@@ -60,6 +61,7 @@ private:
block_run fRun; block_run fRun;
}; };
class Free : public AbstractTraceEntry { class Free : public AbstractTraceEntry {
public: public:
Free(block_run run) Free(block_run run)
@@ -152,6 +154,7 @@ private:
const char* fLabel; const char* fLabel;
}; };
} // namespace BFSBlockTracing } // namespace BFSBlockTracing
# define T(x) new(std::nothrow) BFSBlockTracing::x; # define T(x) new(std::nothrow) BFSBlockTracing::x;