aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Environment.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-05 14:14:11 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-05 14:14:11 -0800
commit88b5791b0bcaa9cce7f488bbd03042aa65e4417e (patch)
tree66cb5662f0b439dbfa5ca88d6b5c0a878951ee77 /toolsrc/src/vcpkg_Environment.cpp
parent1565cafb836a8efdb7c39c9c1df1ca4d671f3d90 (diff)
downloadvcpkg-88b5791b0bcaa9cce7f488bbd03042aa65e4417e.tar.gz
vcpkg-88b5791b0bcaa9cce7f488bbd03042aa65e4417e.zip
Use Nested Namespace Definition
Diffstat (limited to 'toolsrc/src/vcpkg_Environment.cpp')
-rw-r--r--toolsrc/src/vcpkg_Environment.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_Environment.cpp b/toolsrc/src/vcpkg_Environment.cpp
index ed70e6881..c7eec3bd0 100644
--- a/toolsrc/src/vcpkg_Environment.cpp
+++ b/toolsrc/src/vcpkg_Environment.cpp
@@ -5,7 +5,7 @@
#include "metrics.h"
#include "vcpkg_System.h"
-namespace vcpkg {namespace Environment
+namespace vcpkg::Environment
{
static const fs::path default_cmake_installation_dir = "C:/Program Files/CMake/bin";
static const fs::path default_cmake_installation_dir_x86 = "C:/Program Files (x86)/CMake/bin";
@@ -83,4 +83,4 @@ namespace vcpkg {namespace Environment
// TODO: switch out ExecutionPolicy Bypass with "Remove Mark Of The Web" code and restore RemoteSigned
ensure_on_path(nuget_version, L"nuget 2>&1", L"powershell -ExecutionPolicy Bypass scripts\\fetchDependency.ps1 -Dependency nuget");
}
-}}
+}