diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 17:08:08 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:47:08 -0700 |
| commit | 9aab06f5af40a08949a92033983ddc7f052a4d42 (patch) | |
| tree | a4c5d565e4e180a84dc380ba200accb94feecb76 /toolsrc/src/PostBuildLint.cpp | |
| parent | 818b8a4cfc50c0695324fc1d025a7cf39203b2a7 (diff) | |
| download | vcpkg-9aab06f5af40a08949a92033983ddc7f052a4d42.tar.gz vcpkg-9aab06f5af40a08949a92033983ddc7f052a4d42.zip | |
toString() -> to_string in various enums
Diffstat (limited to 'toolsrc/src/PostBuildLint.cpp')
| -rw-r--r-- | toolsrc/src/PostBuildLint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/PostBuildLint.cpp b/toolsrc/src/PostBuildLint.cpp index f986921a0..90aa99f55 100644 --- a/toolsrc/src/PostBuildLint.cpp +++ b/toolsrc/src/PostBuildLint.cpp @@ -528,11 +528,11 @@ namespace vcpkg::PostBuildLint if (!libs_with_invalid_crt.empty()) { - System::println(System::Color::warning, "Expected %s crt linkage, but the following libs had invalid crt linkage:", expected_build_type.toString()); + System::println(System::Color::warning, "Expected %s crt linkage, but the following libs had invalid crt linkage:", expected_build_type.to_string()); System::println(""); for (const BuildType_and_file btf : libs_with_invalid_crt) { - System::println(" %s: %s", btf.file.generic_string(), btf.build_type.toString()); + System::println(" %s: %s", btf.file.generic_string(), btf.build_type.to_string()); } System::println(""); |
