Commit bcb933a9 by Eric Fiselier

dynamically allocate WallTimeImp

parent e0441ef5
......@@ -69,8 +69,8 @@ public:
WallTime Now();
static WallTimeImp& GetWallTimeImp() {
static WallTimeImp imp;
return imp;
static WallTimeImp* imp = new WallTimeImp();
return *imp;
}
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