From 60445c11508bce7c9813a86230941c730c71e931 Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Fri, 31 Mar 2017 16:35:02 -0700 Subject: Fix order of arguments --- toolsrc/include/vcpkg_System.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolsrc/include') diff --git a/toolsrc/include/vcpkg_System.h b/toolsrc/include/vcpkg_System.h index 1c4570134..1a0c89da4 100644 --- a/toolsrc/include/vcpkg_System.h +++ b/toolsrc/include/vcpkg_System.h @@ -42,7 +42,7 @@ namespace vcpkg::System } template - void print(const color c, const Arg1& messageArg1, const char* messageTemplate, const Args&... messageArgs) + void print(const color c, const char* messageTemplate, const Arg1& messageArg1, const Args&... messageArgs) { return print(c, Strings::format(messageTemplate, messageArg1, messageArgs...)); } -- cgit v1.2.3