diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:44:24 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:44:24 -0700 |
| commit | 13482879f82b15294ebdeb04b3084584a3b468a1 (patch) | |
| tree | 1bc74fb666fb8dfcb811e78cd6401b781f2ddca3 /toolsrc/include | |
| parent | 9c2287d0e809020ab90157873e56670127441cc1 (diff) | |
| download | vcpkg-13482879f82b15294ebdeb04b3084584a3b468a1.tar.gz vcpkg-13482879f82b15294ebdeb04b3084584a3b468a1.zip | |
Triplet.to_string()
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/triplet.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/toolsrc/include/triplet.h b/toolsrc/include/triplet.h index 8cf2413b0..d0570e789 100644 --- a/toolsrc/include/triplet.h +++ b/toolsrc/include/triplet.h @@ -15,10 +15,9 @@ namespace vcpkg static const Triplet ARM_UWP; const std::string& canonical_name() const; - std::string architecture() const; - std::string system() const; + const std::string& to_string() const; private: std::string m_canonical_name; @@ -28,10 +27,6 @@ namespace vcpkg bool operator!=(const Triplet& left, const Triplet& right); - std::string to_string(const Triplet& spec); - - std::string to_printf_arg(const Triplet& spec); - std::ostream& operator<<(std::ostream& os, const Triplet& spec); } |
