4f292c7e2f
d3a398281c
7fe8390925
1
2 3 4 5 6 7 8 9 10 11 12 13
14
15
#include <library/cpp/execprofile/profile.h> namespace { struct TInit { inline TInit() { BeginProfiling(); } inline ~TInit() { EndProfiling(); } }; const TInit initer; }