aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/status.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/status.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/status.cpp')
-rw-r--r--zen/cmds/status.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/zen/cmds/status.cpp b/zen/cmds/status.cpp
index 6741ab9e9..1050b5b96 100644
--- a/zen/cmds/status.cpp
+++ b/zen/cmds/status.cpp
@@ -3,7 +3,8 @@
#include "status.h"
#include <zencore/logging.h>
-#include <memory>
+
+namespace zen {
StatusCommand::StatusCommand()
{
@@ -18,3 +19,5 @@ StatusCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
return 0;
}
+
+}