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/status.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/status.cpp')
| -rw-r--r-- | zen/cmds/status.cpp | 5 |
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; } + +} |