We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simply used easylogging v9.89 and followed instruction. But I get following
qmllogging.h:184:70: error: macro "assert" passed 2 arguments, but takes just 1 184 | Q_INVOKABLE inline void assert(bool condition, const QString& msg) {
The text was updated successfully, but these errors were encountered:
After undefined assert and defined ELPP_FEATURE_PERFORMANCE_TRACKING it results in
undefined reference to `vtable for el::qml::QmlLogging'
Resolved this by implementing virtual destructor in qmllogging.cpp
#include "qmllogging.h" el::qml::TimeTracker::~TimeTracker(void) { m_timedBlocks.clear(); }
and replaced in qmllogging.h
virtual ~TimeTracker(void) { m_timedBlocks.clear(); }
with
virtual ~TimeTracker(void);
May there is a better way?
Sorry, something went wrong.
No branches or pull requests
Simply used easylogging v9.89 and followed instruction. But I get following
The text was updated successfully, but these errors were encountered: