diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-03-31 16:35:02 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-31 16:35:02 -0700 |
| commit | 60445c11508bce7c9813a86230941c730c71e931 (patch) | |
| tree | 824e87f0e1aa1dc8d10239d682021bbb230159d0 /toolsrc/include/vcpkg_System.h | |
| parent | e9ca24b21991b27111543f767f2f171927a87414 (diff) | |
| download | vcpkg-60445c11508bce7c9813a86230941c730c71e931.tar.gz vcpkg-60445c11508bce7c9813a86230941c730c71e931.zip | |
Fix order of arguments
Diffstat (limited to 'toolsrc/include/vcpkg_System.h')
| -rw-r--r-- | toolsrc/include/vcpkg_System.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <class Arg1, class...Args> - 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...)); } |
