Replacing const std::string with const char* to reduce binary size and initialization costs

This commit is contained in:
Alexander Bock
2016-11-23 23:52:16 +01:00
parent 7ffcf81235
commit b00595af40
47 changed files with 242 additions and 266 deletions

View File

@@ -27,8 +27,8 @@
#include <openspace/documentation/verifier.h>
namespace {
const std::string _loggerCat = "StaticScale";
const std::string KeyValue = "Scale";
const char* _loggerCat = "StaticScale";
const char* KeyValue = "Scale";
}
namespace openspace {