mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
Fix build errors
This commit is contained in:
parent
4a563f09af
commit
bcb2935dbb
@ -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; }
|
||||||
|
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user