Making most logger categories constexpr

This commit is contained in:
Alexander Bock
2017-12-11 23:46:34 -05:00
parent 6c742b7e30
commit a631b7e0a3
91 changed files with 310 additions and 303 deletions
@@ -29,10 +29,10 @@
#include <ghoul/misc/dictionary.h>
namespace {
const char* _loggerCat = "InstrumentDecoder";
const char* keyDetector = "DetectorType";
const char* keySpice = "Spice";
const char* keyStopCommand = "StopCommand";
constexpr const char* _loggerCat = "InstrumentDecoder";
constexpr const char* keyDetector = "DetectorType";
constexpr const char* keySpice = "Spice";
constexpr const char* keyStopCommand = "StopCommand";
} // namespace
namespace openspace {