Merge pull request #1 from lioncash/cexpr

logvisor: Make Module constructor constexpr
This commit is contained in:
2019-08-17 22:56:59 -07:00
committed by GitHub

View File

@@ -207,7 +207,7 @@ class Module {
} }
public: public:
Module(const char* modName) : m_modName(modName) {} constexpr Module(const char* modName) : m_modName(modName) {}
/** /**
* @brief Route new log message to centralized ILogger * @brief Route new log message to centralized ILogger