aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/run.cpp
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2021-09-17 13:11:04 +0200
committerPer Larsson <[email protected]>2021-09-17 13:11:04 +0200
commitd812fcc3eab88733cbef084eefd089d22177aae4 (patch)
treebb64fa6c64f9707246577de148749b35d1e25987 /zen/cmds/run.cpp
parentAdded helper function for iterating string tokens. (diff)
parentAdded namespace scopes to more includes for better consistency (diff)
downloadarchived-zen-d812fcc3eab88733cbef084eefd089d22177aae4.tar.xz
archived-zen-d812fcc3eab88733cbef084eefd089d22177aae4.zip
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zen/cmds/run.cpp')
-rw-r--r--zen/cmds/run.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/zen/cmds/run.cpp b/zen/cmds/run.cpp
index e5210f695..711a3a341 100644
--- a/zen/cmds/run.cpp
+++ b/zen/cmds/run.cpp
@@ -12,7 +12,7 @@
#include <zencore/logging.h>
#include <zencore/string.h>
#include <zencore/timer.h>
-#include <zenserverprocess.h>
+#include <zenutil/zenserverprocess.h>
#include <filesystem>
@@ -35,6 +35,8 @@
//////////////////////////////////////////////////////////////////////////
+namespace zen {
+
using namespace std::literals;
RunCommand::RunCommand()
@@ -181,3 +183,5 @@ RunCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
return 0;
}
+
+}