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
+4 -4
View File
@@ -36,11 +36,11 @@
#include <fstream>
namespace {
const char* _loggerCat = "ModelGeometry";
constexpr const char* _loggerCat = "ModelGeometry";
const char* KeyType = "Type";
const char* KeyGeomModelFile = "GeometryFile";
const int8_t CurrentCacheVersion = 3;
constexpr const char* KeyType = "Type";
constexpr const char* KeyGeomModelFile = "GeometryFile";
constexpr const int8_t CurrentCacheVersion = 3;
} // namespace
namespace openspace::modelgeometry {