bombomby / optick

C++ Profiler For Games
https://optick.dev
MIT License
2.95k stars 296 forks source link

VS2015 Fixes #6

Closed galek closed 6 years ago

galek commented 9 years ago

Needly replace: hash_set on unordered_set

and in:

OutputDataStream& Sampler::Serialize replace 

std::vector<const Symbol * const> symbols;
on
#if _MSC_VER == 1900
        std::vector<const Symbol *> symbols;
#else
        std::vector<const Symbol * const> symbols;
#endif