From f9944d587fb70929f6d1389d374c8fe0fc8b1d1d Mon Sep 17 00:00:00 2001 From: Scott Jones Date: Mon, 11 May 2020 09:36:13 -0700 Subject: [PATCH] Use canonical error message format for standard build tool parsing --- cppwinrt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppwinrt/main.cpp b/cppwinrt/main.cpp index 9a68368d0..b46e08f58 100644 --- a/cppwinrt/main.cpp +++ b/cppwinrt/main.cpp @@ -363,7 +363,7 @@ Where is one or more of: } catch (std::exception const& e) { - w.write(" error: %\n", e.what()); + w.write("cppwinrt : error %\n", e.what()); result = 1; }