aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-05 14:25:50 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-05 14:25:50 -0800
commit708e93d82acd4da9c651cc7043dfd32a182ecc11 (patch)
treef54fdba17ca3e7192476e8f249b16c8836225096 /toolsrc/src
parent6e29b7b8d4b3a21e46a721f79d184213d1c874a4 (diff)
downloadvcpkg-708e93d82acd4da9c651cc7043dfd32a182ecc11.tar.gz
vcpkg-708e93d82acd4da9c651cc7043dfd32a182ecc11.zip
Use Nested Namespace Definition
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/BuildInfo.cpp4
-rw-r--r--toolsrc/src/Paragraphs.cpp4
-rw-r--r--toolsrc/src/vcpkg_info.cpp4
-rw-r--r--toolsrc/src/vcpkglib_helpers.cpp4
4 files changed, 8 insertions, 8 deletions
diff --git a/toolsrc/src/BuildInfo.cpp b/toolsrc/src/BuildInfo.cpp
index f151a3ea5..a45dc4b72 100644
--- a/toolsrc/src/BuildInfo.cpp
+++ b/toolsrc/src/BuildInfo.cpp
@@ -2,7 +2,7 @@
#include "vcpkg_Checks.h"
#include "vcpkglib_helpers.h"
-namespace vcpkg { namespace PostBuildLint
+namespace vcpkg::PostBuildLint
{
const ConfigurationType& BuildType::config() const
{
@@ -161,4 +161,4 @@ namespace vcpkg { namespace PostBuildLint
{
return this->m_dll_name;
}
-}}
+}
diff --git a/toolsrc/src/Paragraphs.cpp b/toolsrc/src/Paragraphs.cpp
index 823b4a85e..d99ad45cf 100644
--- a/toolsrc/src/Paragraphs.cpp
+++ b/toolsrc/src/Paragraphs.cpp
@@ -1,7 +1,7 @@
#include "Paragraphs.h"
#include "vcpkg_Files.h"
-namespace vcpkg { namespace Paragraphs
+namespace vcpkg::Paragraphs
{
struct Parser
{
@@ -160,4 +160,4 @@ namespace vcpkg { namespace Paragraphs
{
return Parser(str.c_str(), str.c_str() + str.size()).get_paragraphs();
}
-}}
+}
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;
}
-}}
+}
diff --git a/toolsrc/src/vcpkglib_helpers.cpp b/toolsrc/src/vcpkglib_helpers.cpp
index d104bb19d..fdc287507 100644
--- a/toolsrc/src/vcpkglib_helpers.cpp
+++ b/toolsrc/src/vcpkglib_helpers.cpp
@@ -3,7 +3,7 @@
#include <unordered_map>
#include <regex>
-namespace vcpkg {namespace details
+namespace vcpkg::details
{
std::string optional_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname)
{
@@ -53,4 +53,4 @@ namespace vcpkg {namespace details
simple_desc.append("...");
return simple_desc;
}
-}}
+}