diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-29 16:20:21 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-29 16:20:46 -0700 |
| commit | 5337adf1078f27c993f01662b7dadb8da2801356 (patch) | |
| tree | 84d6dc9d137a03fb17956f37ed47578cb748b118 /toolsrc/src/BinaryParagraph.cpp | |
| parent | d1d01075adf025690eeceffc2fc41f9a1a27982b (diff) | |
| download | vcpkg-5337adf1078f27c993f01662b7dadb8da2801356.tar.gz vcpkg-5337adf1078f27c993f01662b7dadb8da2801356.zip | |
Remove Strings::is_empty(). Use std::string.empty()
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 1ab1aa63e..1504912ab 100644 --- a/toolsrc/src/BinaryParagraph.cpp +++ b/toolsrc/src/BinaryParagraph.cpp @@ -89,7 +89,7 @@ namespace vcpkg std::string BinaryParagraph::displayname() const { - const auto f = Strings::is_empty(this->feature) ? "core" : this->feature; + const auto f = this->feature.empty() ? "core" : this->feature; return Strings::format("%s[%s]:%s", this->spec.name(), f, this->spec.triplet()); } |
