easylogging++: fix logging with static const header only data members
This commit is contained in:
parent
3b46617bd9
commit
dc98019b59
|
@ -5092,7 +5092,19 @@ ELPP_LITERAL("(") << elem->first << ELPP_LITERAL(", ") << elem->second << ELPP_L
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
inline Writer& operator<<(const T& log) {
|
inline typename std::enable_if<std::is_integral<T>::value, Writer&>::type
|
||||||
|
operator<<(T log) {
|
||||||
|
#if ELPP_LOGGING_ENABLED
|
||||||
|
if (m_proceed) {
|
||||||
|
m_messageBuilder << log;
|
||||||
|
}
|
||||||
|
#endif // ELPP_LOGGING_ENABLED
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline typename std::enable_if<!std::is_integral<T>::value, Writer&>::type
|
||||||
|
operator<<(const T& log) {
|
||||||
#if ELPP_LOGGING_ENABLED
|
#if ELPP_LOGGING_ENABLED
|
||||||
if (m_proceed) {
|
if (m_proceed) {
|
||||||
m_messageBuilder << log;
|
m_messageBuilder << log;
|
||||||
|
|
Loading…
Reference in New Issue