aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkglib.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:39:33 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:54:01 -0700
commit28e581599e263e3f0b021ad5b6914d80fa9640f8 (patch)
tree15ca2181346e1e9dd76521099c6d05a550d52534 /toolsrc/src/vcpkglib.cpp
parent03c4c7f8c49d103f57fe12899526b27fc8ccc452 (diff)
downloadvcpkg-28e581599e263e3f0b021ad5b6914d80fa9640f8.tar.gz
vcpkg-28e581599e263e3f0b021ad5b6914d80fa9640f8.zip
Use Strings::EMPTY
Diffstat (limited to 'toolsrc/src/vcpkglib.cpp')
-rw-r--r--toolsrc/src/vcpkglib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkglib.cpp b/toolsrc/src/vcpkglib.cpp
index 96e9f05e1..9f47c9d61 100644
--- a/toolsrc/src/vcpkglib.cpp
+++ b/toolsrc/src/vcpkglib.cpp
@@ -189,7 +189,7 @@ namespace vcpkg
for (const std::unique_ptr<StatusParagraph>& pgh : status_db)
{
- if (pgh->state != InstallState::INSTALLED || pgh->package.feature != "")
+ if (pgh->state != InstallState::INSTALLED || !Strings::is_empty(pgh->package.feature))
{
continue;
}