7
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:
Seth Hillbrand 2021-12-15 12:52:08 -08:00
parent d785a97940
commit 232b39a321

View File

@ -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 )