Chunk.cpp: fix string literal cast to non-const char*

master
Dorian Wouters 2018-09-09 16:41:27 +02:00
parent 1a235adb40
commit a04f430b04
No known key found for this signature in database
GPG Key ID: 6E9DA8063322434B
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ namespace diggler {
using Util::Log;
using namespace Util::Logging::LogLevels;
static constexpr char *TAG = "Chunk";
static constexpr const char *TAG = "Chunk";
static constexpr uint32 HashSeed = 0xFA0C778C;
static constexpr int CXY = Chunk::CX*Chunk::CY;