Fix build errors

This commit is contained in:
Matthias Hochsteger 2019-01-11 10:34:07 +01:00
parent 4a563f09af
commit bcb2935dbb
2 changed files with 4 additions and 1 deletions

View File

@ -43,6 +43,9 @@ namespace spdlog
class logger class logger
{ {
public: public:
template<typename T>
void log_helper() { std::clog << t; }
template<typename T> template<typename T>
void log_helper( T t) { std::clog << t; } void log_helper( T t) { std::clog << t; }

View File

@ -124,7 +124,7 @@ namespace ngcore
static void SetName (int nr, const std::string & name) { timers[nr].name = name; } static void SetName (int nr, const std::string & name) { timers[nr].name = name; }
static std::string GetName (int nr) { return timers[nr].name; } static std::string GetName (int nr) { return timers[nr].name; }
/// print profile /// print profile
NGCORE_API static void Print (FILE * ost); NGCORE_API static void Print (FILE * prof);
class RegionTimer class RegionTimer
{ {