diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-05 14:25:50 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-05 14:25:50 -0800 |
| commit | 708e93d82acd4da9c651cc7043dfd32a182ecc11 (patch) | |
| tree | f54fdba17ca3e7192476e8f249b16c8836225096 /toolsrc/src/vcpkg_info.cpp | |
| parent | 6e29b7b8d4b3a21e46a721f79d184213d1c874a4 (diff) | |
| download | vcpkg-708e93d82acd4da9c651cc7043dfd32a182ecc11.tar.gz vcpkg-708e93d82acd4da9c651cc7043dfd32a182ecc11.zip | |
Use Nested Namespace Definition
Diffstat (limited to 'toolsrc/src/vcpkg_info.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_info.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_info.cpp b/toolsrc/src/vcpkg_info.cpp index 25c09d6da..69bc6a355 100644 --- a/toolsrc/src/vcpkg_info.cpp +++ b/toolsrc/src/vcpkg_info.cpp @@ -6,7 +6,7 @@ #define VCPKG_VERSION_AS_STRING MACRO_TO_STRING(VCPKG_VERSION)"" // Double quotes needed at the end to prevent blank token -namespace vcpkg { namespace Info +namespace vcpkg::Info { const std::string& version() { @@ -31,4 +31,4 @@ namespace vcpkg { namespace Info static const std::string s_email = R"(vcpkg@microsoft.com)"; return s_email; } -}} +} |
