aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/Paragraphs.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-12-16 19:40:58 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-12-16 19:40:58 -0800
commitaad0cc4c042aad87b2b52eded0e465ed01e799c1 (patch)
tree1650d84c1cb415906fe9b2b60bd0ce4981c1095f /toolsrc/src/Paragraphs.cpp
parentb666e90c32e58a673331b303e64e299cc1168aa2 (diff)
downloadvcpkg-aad0cc4c042aad87b2b52eded0e465ed01e799c1.tar.gz
vcpkg-aad0cc4c042aad87b2b52eded0e465ed01e799c1.zip
Files::get_contents() -> Files::read_contents()
Diffstat (limited to 'toolsrc/src/Paragraphs.cpp')
-rw-r--r--toolsrc/src/Paragraphs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/Paragraphs.cpp b/toolsrc/src/Paragraphs.cpp
index 5efa9a7b3..823b4a85e 100644
--- a/toolsrc/src/Paragraphs.cpp
+++ b/toolsrc/src/Paragraphs.cpp
@@ -153,7 +153,7 @@ namespace vcpkg { namespace Paragraphs
std::vector<std::unordered_map<std::string, std::string>> get_paragraphs(const fs::path& control_path)
{
- return parse_paragraphs(Files::get_contents(control_path).get_or_throw());
+ return parse_paragraphs(Files::read_contents(control_path).get_or_throw());
}
std::vector<std::unordered_map<std::string, std::string>> parse_paragraphs(const std::string& str)