mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
fixed build errors for gcc 4.6
This commit is contained in:
parent
4c91d08cea
commit
6bad2daa62
3 changed files with 10 additions and 2 deletions
6
Log.h
6
Log.h
|
@ -50,7 +50,11 @@ class Log: public i2p::util::MsgQueue<LogMsg>
|
|||
|
||||
std::ostream * m_LogStream;
|
||||
std::string m_Timestamp;
|
||||
std::chrono::steady_clock::time_point m_LastTimestampUpdate;
|
||||
#if (__GNUC__ == 4) && (__GNUC_MINOR__ <= 6) // gcc 4.6
|
||||
std::chrono::monotonic_clock::time_point m_LastTimestampUpdate;
|
||||
#else
|
||||
std::chrono::steady_clock::time_point m_LastTimestampUpdate;
|
||||
#endif
|
||||
};
|
||||
|
||||
extern Log * g_Log;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue