Browse Source

Add legacy CTOR for PROF_COUNTER

6.0.7
Seth Hillbrand 4 years ago
parent
commit
232b39a321
  1. 6
      include/profile.h

6
include/profile.h

@ -225,6 +225,12 @@ unsigned GetRunningMicroSecs();
class PROF_COUNTER
{
public:
PROF_COUNTER() :
m_name( "Anonymous" ),
m_count( 0 )
{
}
PROF_COUNTER( const std::string& aName ) :
m_name( aName ),
m_count( 0 )

Loading…
Cancel
Save