summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectPlatform.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-05-24 00:44:33 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-05-24 00:44:33 +0000
commit09ad8c8f73dbc64efada18e7ae2f9b64eb1be215 (patch)
tree58cbfec2928c0ff577927df4c7096d141069da4f /lldb/source/Commands/CommandObjectPlatform.cpp
parent060f4b48d55c761de2722c0b7387966d1e8ede0c (diff)
downloadbcm5719-llvm-09ad8c8f73dbc64efada18e7ae2f9b64eb1be215.tar.gz
bcm5719-llvm-09ad8c8f73dbc64efada18e7ae2f9b64eb1be215.zip
Fix integer literals which are cast to bool
This change replaces built-in types that are implicitly converted to booleans. Differential revision: https://reviews.llvm.org/D62284 llvm-svn: 361580
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectPlatform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp
index 0007ae66a85..53549cdeee3 100644
--- a/lldb/source/Commands/CommandObjectPlatform.cpp
+++ b/lldb/source/Commands/CommandObjectPlatform.cpp
@@ -235,7 +235,7 @@ protected:
host_platform_sp->GetDescription());
uint32_t idx;
- for (idx = 0; 1; ++idx) {
+ for (idx = 0; true; ++idx) {
const char *plugin_name =
PluginManager::GetPlatformPluginNameAtIndex(idx);
if (plugin_name == nullptr)
OpenPOWER on IntegriCloud