aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/base/expected.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg/base/expected.h b/toolsrc/include/vcpkg/base/expected.h
index b3b81ae81..1f3d94638 100644
--- a/toolsrc/include/vcpkg/base/expected.h
+++ b/toolsrc/include/vcpkg/base/expected.h
@@ -103,7 +103,12 @@ namespace vcpkg
private:
void exit_if_error(const LineInfo& line_info) const
{
- Checks::check_exit(line_info, !m_s.has_error(), m_s.to_string());
+ // This is used for quick value_or_exit() calls, so always put line_info in the error message.
+ Checks::check_exit(line_info,
+ !m_s.has_error(),
+ "Failed at [%s] with message:\n%s",
+ line_info.to_string(),
+ m_s.to_string());
}
ErrorHolder<S> m_s;