diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:45:17 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:45:17 -0700 |
| commit | 2069028b06181dab3c51b2dceb170594153c1204 (patch) | |
| tree | 5235da3a95a49ac43082a42708e436da7a8f87ea /toolsrc/src/BinaryParagraph.cpp | |
| parent | 13482879f82b15294ebdeb04b3084584a3b468a1 (diff) | |
| download | vcpkg-2069028b06181dab3c51b2dceb170594153c1204.tar.gz vcpkg-2069028b06181dab3c51b2dceb170594153c1204.zip | |
Remove triplet operator<< overload
Diffstat (limited to 'toolsrc/src/BinaryParagraph.cpp')
| -rw-r--r-- | toolsrc/src/BinaryParagraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/BinaryParagraph.cpp b/toolsrc/src/BinaryParagraph.cpp index 35351f153..89f57e51b 100644 --- a/toolsrc/src/BinaryParagraph.cpp +++ b/toolsrc/src/BinaryParagraph.cpp @@ -85,7 +85,7 @@ namespace vcpkg os << "\n"; } - os << "Architecture: " << p.spec.target_triplet() << "\n"; + os << "Architecture: " << p.spec.target_triplet().to_string() << "\n"; os << "Multi-Arch: same\n"; if (!p.maintainer.empty()) os << "Maintainer: " << p.maintainer << "\n"; |
