aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/deploy.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/deploy.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/deploy.cpp')
-rw-r--r--zen/cmds/deploy.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/cmds/deploy.cpp b/zen/cmds/deploy.cpp
index b8879fefb..faaf0030c 100644
--- a/zen/cmds/deploy.cpp
+++ b/zen/cmds/deploy.cpp
@@ -5,6 +5,8 @@
#include <zencore/logging.h>
#include <zencore/string.h>
+namespace zen {
+
DeployCommand::DeployCommand()
{
m_Options.add_options()("h,help", "Print help");
@@ -80,3 +82,5 @@ DeployCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
return 0;
}
+
+}