aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/coff_file_reader.h
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-02-08 15:12:28 -0800
committerGitHub <noreply@github.com>2017-02-08 15:12:28 -0800
commit7ddae17e2f520e83d25f78c078bf8b8a58fff447 (patch)
tree87e2fc5c57a685367ec051b1efbdeb5d3ab43f4d /toolsrc/include/coff_file_reader.h
parent5e588ddb5be9e6e27cebcc3be2e1a27f3ca83a50 (diff)
parenta9f7fc6e90feaad50c1221ef9bd56e2620302215 (diff)
downloadvcpkg-7ddae17e2f520e83d25f78c078bf8b8a58fff447.tar.gz
vcpkg-7ddae17e2f520e83d25f78c078bf8b8a58fff447.zip
Merge branch 'master' into master
Diffstat (limited to 'toolsrc/include/coff_file_reader.h')
-rw-r--r--toolsrc/include/coff_file_reader.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/toolsrc/include/coff_file_reader.h b/toolsrc/include/coff_file_reader.h
index 81f107f10..24fbf4576 100644
--- a/toolsrc/include/coff_file_reader.h
+++ b/toolsrc/include/coff_file_reader.h
@@ -1,12 +1,10 @@
#pragma once
#include <vector>
#include "MachineType.h"
-#include <filesystem>
+#include "filesystem_fs.h"
-namespace vcpkg {namespace COFFFileReader
+namespace vcpkg::COFFFileReader
{
- namespace fs = std::tr2::sys;
-
struct dll_info
{
MachineType machine_type;
@@ -17,7 +15,7 @@ namespace vcpkg {namespace COFFFileReader
std::vector<MachineType> machine_types;
};
- dll_info read_dll(const fs::path path);
+ dll_info read_dll(const fs::path& path);
- lib_info read_lib(const fs::path path);
-}}
+ lib_info read_lib(const fs::path& path);
+}