aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-13 14:07:27 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 18:06:06 -0800
commit6e25bcf7cb1efd6de55f97aa978acd24d90af476 (patch)
tree34012750ce2682581e3893dae63c733487efb9ae /toolsrc/include
parentc432b66034a4efe304d79926bf81f92cb6e96ad6 (diff)
downloadvcpkg-6e25bcf7cb1efd6de55f97aa978acd24d90af476.tar.gz
vcpkg-6e25bcf7cb1efd6de55f97aa978acd24d90af476.zip
Swap parameters of Build::create_error_message()
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 976e66c18..1dbc9c375 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 std::string& package_id, const BuildResult build_result);
+ std::string create_error_message(const BuildResult build_result, const std::string& package_id);
BuildResult build_package(const SourceParagraph& source_paragraph, const package_spec& spec, const vcpkg_paths& paths, const fs::path& port_dir, const StatusParagraphs& status_db);
void perform_and_exit(const vcpkg_cmd_arguments& args, const vcpkg_paths& paths, const triplet& default_target_triplet);