Add legacy CTOR for PROF_COUNTER
This commit is contained in:
parent
d785a97940
commit
232b39a321
|
@ -225,6 +225,12 @@ unsigned GetRunningMicroSecs();
|
||||||
class PROF_COUNTER
|
class PROF_COUNTER
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
PROF_COUNTER() :
|
||||||
|
m_name( "Anonymous" ),
|
||||||
|
m_count( 0 )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
PROF_COUNTER( const std::string& aName ) :
|
PROF_COUNTER( const std::string& aName ) :
|
||||||
m_name( aName ),
|
m_name( aName ),
|
||||||
m_count( 0 )
|
m_count( 0 )
|
||||||
|
|
Loading…
Reference in New Issue