aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:37:08 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:37:08 -0800
commitd78c1a974f1eabe8caf5df36bbd5b55b2dcd701d (patch)
tree5fa436a94f7fb27a4836eb64f9bb41214a6fcb4b /toolsrc/include
parente7c6f90adc58382d200159ada063204d462937d0 (diff)
downloadvcpkg-d78c1a974f1eabe8caf5df36bbd5b55b2dcd701d.tar.gz
vcpkg-d78c1a974f1eabe8caf5df36bbd5b55b2dcd701d.zip
Move shorten_description to vcpkglib_helpers
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg.h2
-rw-r--r--toolsrc/include/vcpkglib_helpers.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg.h b/toolsrc/include/vcpkg.h
index 30d8adbf8..3a8160c71 100644
--- a/toolsrc/include/vcpkg.h
+++ b/toolsrc/include/vcpkg.h
@@ -13,8 +13,6 @@ namespace vcpkg
extern bool g_do_dry_run;
- std::string shorten_description(const std::string& desc);
-
StatusParagraphs database_load_check(const vcpkg_paths& paths);
void install_package(const vcpkg_paths& paths, const BinaryParagraph& binary_paragraph, StatusParagraphs& status_db);
diff --git a/toolsrc/include/vcpkglib_helpers.h b/toolsrc/include/vcpkglib_helpers.h
index 640fab555..019bb8c39 100644
--- a/toolsrc/include/vcpkglib_helpers.h
+++ b/toolsrc/include/vcpkglib_helpers.h
@@ -9,4 +9,6 @@ namespace vcpkg {namespace details
std::string required_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
std::string remove_required_field(std::unordered_map<std::string, std::string>* fields, const std::string& fieldname);
+
+ std::string shorten_description(const std::string& desc);
}}