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

View File

@@ -43,13 +43,13 @@
#include <ghoul/opengl/textureunit.h>
namespace {
const char* _loggerCat = "RenderableModelProjection";
constexpr const char* _loggerCat = "RenderableModelProjection";
const char* keyGeometry = "Geometry";
const char* keyProjection = "Projection";
const char* keyBoundingSphereRadius = "BoundingSphereRadius";
constexpr const char* keyGeometry = "Geometry";
constexpr const char* keyProjection = "Projection";
constexpr const char* keyBoundingSphereRadius = "BoundingSphereRadius";
const char* DestinationFrame = "GALACTIC";
constexpr const char* DestinationFrame = "GALACTIC";
static const openspace::properties::Property::PropertyInfo ColorTextureInfo = {
"ColorTexture",