summaryrefslogtreecommitdiff
path: root/src/mmo/version.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmo/version.cpp')
-rw-r--r--src/mmo/version.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mmo/version.cpp b/src/mmo/version.cpp
index 54b1709..2e337c1 100644
--- a/src/mmo/version.cpp
+++ b/src/mmo/version.cpp
@@ -28,6 +28,9 @@
#include "../poison.hpp"
+
+namespace tmwa
+{
Version CURRENT_VERSION =
{
VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH,
@@ -61,7 +64,7 @@ Version CURRENT_MAP_SERVER_VERSION =
VENDOR_POINT,
};
-const char CURRENT_VERSION_STRING[] = VERSION_STRING;
+LString CURRENT_VERSION_STRING = VERSION_STRING;
bool extract(XString str, Version *vers)
{
@@ -70,3 +73,4 @@ bool extract(XString str, Version *vers)
// It would've been useful during the magic migration.
return extract(str, record<'.'>(&vers->major, &vers->minor, &vers->patch));
}
+} // namespace tmwa