aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-13 16:23:21 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 18:06:06 -0800
commit430739c468f7ea3cc513b85339ac51c16073325c (patch)
tree73a4f78ab335ee6b30071fe1b1249337bc0d901e /toolsrc/include
parent6824cc9264d245ebd1302c27eb714250c5f7ec13 (diff)
downloadvcpkg-430739c468f7ea3cc513b85339ac51c16073325c.tar.gz
vcpkg-430739c468f7ea3cc513b85339ac51c16073325c.zip
Change parameter from std::string to package_spec
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Commands.h b/toolsrc/include/vcpkg_Commands.h
index 1e8b3b9df..471485e31 100644
--- a/toolsrc/include/vcpkg_Commands.h
+++ b/toolsrc/include/vcpkg_Commands.h
@@ -22,7 +22,7 @@ namespace vcpkg::Commands
};
const std::string& to_string(const BuildResult build_result);
- std::string create_error_message(const BuildResult build_result, const std::string& package_id);
+ std::string create_error_message(const BuildResult build_result, const package_spec& spec);
std::string create_user_troubleshooting_message(const package_spec& spec);
BuildResult build_package(const SourceParagraph& source_paragraph, const package_spec& spec, const vcpkg_paths& paths, const fs::path& port_dir, const StatusParagraphs& status_db);