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

@@ -28,7 +28,7 @@
#include <tiny_obj_loader.h>
namespace {
const std::string _loggerCat = "WavefrontGeometry";
static const std::string _loggerCat = "WavefrontGeometry";
}
namespace openspace {