mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
Fix build errors
This commit is contained in:
parent
4a563f09af
commit
bcb2935dbb
@ -43,6 +43,9 @@ namespace spdlog
|
||||
class logger
|
||||
{
|
||||
public:
|
||||
template<typename T>
|
||||
void log_helper() { std::clog << t; }
|
||||
|
||||
template<typename T>
|
||||
void log_helper( T t) { std::clog << t; }
|
||||
|
||||
|
@ -124,7 +124,7 @@ namespace ngcore
|
||||
static void SetName (int nr, const std::string & name) { timers[nr].name = name; }
|
||||
static std::string GetName (int nr) { return timers[nr].name; }
|
||||
/// print profile
|
||||
NGCORE_API static void Print (FILE * ost);
|
||||
NGCORE_API static void Print (FILE * prof);
|
||||
|
||||
class RegionTimer
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user