mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-21 00:21:25 +00:00
Add legacy CTOR for PROF_COUNTER
This commit is contained in:
parent
d785a97940
commit
232b39a321
@ -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…
Reference in New Issue
Block a user