aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/hash.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/hash.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/hash.cpp')
-rw-r--r--zen/cmds/hash.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/cmds/hash.cpp b/zen/cmds/hash.cpp
index b6276dbc1..e9484c453 100644
--- a/zen/cmds/hash.cpp
+++ b/zen/cmds/hash.cpp
@@ -9,6 +9,8 @@
#include <ppl.h>
+namespace zen {
+
HashCommand::HashCommand()
{
m_Options.add_options()("d,dir", "Directory to scan", cxxopts::value<std::string>(m_ScanDirectory))(
@@ -123,3 +125,5 @@ HashCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
// TODO: implement snapshot enumeration and display
return 0;
}
+
+}