diff options
Diffstat (limited to 'src/mmo/version.cpp')
-rw-r--r-- | src/mmo/version.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mmo/version.cpp b/src/mmo/version.cpp index 1fab68d..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, @@ -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 |