diff options
author | Sean Callanan <scallanan@apple.com> | 2012-08-09 00:50:26 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-08-09 00:50:26 +0000 |
commit | 9a028519e8e759ecd5157fa8e7bdadae6da54651 (patch) | |
tree | 8fec32c5a99b2cff7cd3a8e150e6f6a5b2974cdb /lldb/source/Expression/ClangExpressionDeclMap.cpp | |
parent | 33baca29e53d781f3b1d2fb908079afd7da865b9 (diff) | |
download | bcm5719-llvm-9a028519e8e759ecd5157fa8e7bdadae6da54651.tar.gz bcm5719-llvm-9a028519e8e759ecd5157fa8e7bdadae6da54651.zip |
Removed explicit NULL checks for shared pointers
and instead made us use implicit casts to bool.
This generated a warning in C++11.
<rdar://problem/11930775>
llvm-svn: 161559
Diffstat (limited to 'lldb/source/Expression/ClangExpressionDeclMap.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionDeclMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangExpressionDeclMap.cpp b/lldb/source/Expression/ClangExpressionDeclMap.cpp index e4c5a179439..68467a708ea 100644 --- a/lldb/source/Expression/ClangExpressionDeclMap.cpp +++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp @@ -2657,7 +2657,7 @@ ClangExpressionDeclMap::FindExternalVisibleDecls (NameSearchContext &context, err); // If we found a variable in scope, no need to pull up function names - if (err.Success() && var != NULL) + if (err.Success() && var) { AddOneVariable(context, var, valobj, current_id); context.m_found.variable = true; |