Commit bcb933a9 by Eric Fiselier

dynamically allocate WallTimeImp

parent e0441ef5
...@@ -69,8 +69,8 @@ public: ...@@ -69,8 +69,8 @@ public:
WallTime Now(); WallTime Now();
static WallTimeImp& GetWallTimeImp() { static WallTimeImp& GetWallTimeImp() {
static WallTimeImp imp; static WallTimeImp* imp = new WallTimeImp();
return imp; return *imp;
} }
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment