aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/vcpkg_Files.h
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-05 12:47:08 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-05 12:55:28 -0800
commit0b5e2e9e76e66b566cf4d3f68146fdbdff2bac05 (patch)
tree5eca03ad9eeb2c91bcafa28fe3557e92b561524b /toolsrc/include/vcpkg_Files.h
parentb280f57002044036c1c3c9a446c06e8e0a34fb00 (diff)
downloadvcpkg-0b5e2e9e76e66b566cf4d3f68146fdbdff2bac05.tar.gz
vcpkg-0b5e2e9e76e66b566cf4d3f68146fdbdff2bac05.zip
Use nested namespace definition
Diffstat (limited to 'toolsrc/include/vcpkg_Files.h')
-rw-r--r--toolsrc/include/vcpkg_Files.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg_Files.h b/toolsrc/include/vcpkg_Files.h
index 6c9d0d365..3f9570946 100644
--- a/toolsrc/include/vcpkg_Files.h
+++ b/toolsrc/include/vcpkg_Files.h
@@ -4,7 +4,7 @@
#include "filesystem_fs.h"
#include <iterator>
-namespace vcpkg {namespace Files
+namespace vcpkg::Files
{
static const char* FILESYSTEM_INVALID_CHARACTERS = R"(\/:*?"<>|)";
@@ -53,4 +53,4 @@ namespace vcpkg {namespace Files
std::vector<fs::path> non_recursive_find_all_files_in_dir(const fs::path& dir);
void print_paths(const std::vector<fs::path>& paths);
-}}
+}