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/dedup.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/dedup.cpp')
| -rw-r--r-- | zen/cmds/dedup.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/cmds/dedup.cpp b/zen/cmds/dedup.cpp index 90a4fea76..f95a87518 100644 --- a/zen/cmds/dedup.cpp +++ b/zen/cmds/dedup.cpp @@ -12,6 +12,8 @@ #include <ppl.h> +namespace zen { + DedupCommand::DedupCommand() { m_Options.add_options()("h,help", "Print help"); @@ -290,3 +292,5 @@ DedupCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) return 0; } + +} |