aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/Paragraphs.h
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-29 18:08:53 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-30 13:38:42 -0800
commit0042316c4b57cf91ded8e474a8dda354340e7381 (patch)
treeb328767cab72afa547e9d06c5662f56fc5cfac21 /toolsrc/include/Paragraphs.h
parent5815a102389e84fd1bc6a6d7865ab0459d7c7a9f (diff)
downloadvcpkg-0042316c4b57cf91ded8e474a8dda354340e7381.tar.gz
vcpkg-0042316c4b57cf91ded8e474a8dda354340e7381.zip
Introduce filesystem_fs.h
Diffstat (limited to 'toolsrc/include/Paragraphs.h')
-rw-r--r--toolsrc/include/Paragraphs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/toolsrc/include/Paragraphs.h b/toolsrc/include/Paragraphs.h
index 22aaefe98..9e9fafe49 100644
--- a/toolsrc/include/Paragraphs.h
+++ b/toolsrc/include/Paragraphs.h
@@ -1,11 +1,10 @@
#pragma once
-#include <filesystem>
+#include "filesystem_fs.h"
#include <unordered_map>
namespace vcpkg { namespace Paragraphs
{
- namespace fs = std::tr2::sys;
std::vector<std::unordered_map<std::string, std::string>> get_paragraphs(const fs::path& control_path);
std::vector<std::unordered_map<std::string, std::string>> parse_paragraphs(const std::string& str);
}}