Skip to content

Instantly share code, notes, and snippets.

@klmr
Created April 29, 2013 21:51
Show Gist options
  • Save klmr/5485096 to your computer and use it in GitHub Desktop.
Save klmr/5485096 to your computer and use it in GitHub Desktop.
Minimised code
struct CProfiler {
struct CScopeProfiler { };
struct CScopeRun { };
typedef std::unordered_set< const CScopeProfiler*,
std::hash< const CScopeProfiler* >,
std::equal_to< const CScopeProfiler* >,
CAllocator< const CScopeProfiler* > > CScopeProfilersSet;
typedef std::unordered_set< const CScopeProfiler* > CInternalScopeProfilersSet;
CScopeProfilersSet ScopeProfilersRegistry() const;
CInternalScopeProfilersSet* m_pkRegister;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment