diff options
| author | Per Larsson <[email protected]> | 2021-09-17 13:11:04 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-17 13:11:04 +0200 |
| commit | d812fcc3eab88733cbef084eefd089d22177aae4 (patch) | |
| tree | bb64fa6c64f9707246577de148749b35d1e25987 /zen/cmds/run.cpp | |
| parent | Added helper function for iterating string tokens. (diff) | |
| parent | Added namespace scopes to more includes for better consistency (diff) | |
| download | archived-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.cpp | 6 |
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; } + +} |