Beast class refactor

This commit is contained in:
Vinnie Falco
2013-10-03 17:38:04 -07:00
parent 3f51eb7b63
commit 0bf006cdae
36 changed files with 62 additions and 5646 deletions

View File

@@ -119,9 +119,9 @@ private:
class Counter : public CountedObjects::CounterBase
{
public:
Counter () noexcept { }
Counter () { }
char const* getName () const noexcept
char const* getName () const
{
return Object::getCountedObjectName ();
}
@@ -130,10 +130,8 @@ private:
};
private:
static Counter& getCounter () noexcept
static Counter& getCounter ()
{
// VFALCO TODO Research the thread safety of static initializers
// on all supported platforms
return StaticObject <Counter>::get();
}
};