diff options
| author | Stefan Boberg <[email protected]> | 2021-09-17 09:54:50 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-17 09:54:50 +0200 |
| commit | 6da25650aa4bf87dcd5e3d612c615e0b8240015f (patch) | |
| tree | e23e686b6296e860a010b6e3fa580eea8481c185 /zen/cmds/run.cpp | |
| parent | Moved zenserverprocess into zenutil/zenserverprocess.h (diff) | |
| download | archived-zen-6da25650aa4bf87dcd5e3d612c615e0b8240015f.tar.xz archived-zen-6da25650aa4bf87dcd5e3d612c615e0b8240015f.zip | |
Added namespace scopes to more includes for better consistency
Diffstat (limited to 'zen/cmds/run.cpp')
| -rw-r--r-- | zen/cmds/run.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/cmds/run.cpp b/zen/cmds/run.cpp index d0ecaaf2b..711a3a341 100644 --- a/zen/cmds/run.cpp +++ b/zen/cmds/run.cpp @@ -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; } + +} |