diff options
author | Jim Ingham <jingham@apple.com> | 2011-07-08 18:34:32 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-07-08 18:34:32 +0000 |
commit | 368c6301a26b8bf674e88d0b4b343efd09ae7edf (patch) | |
tree | dca645c4dcd94ab6c08b2212036c12ce3134aee5 | |
parent | affb03b7fb5303d0f3484367dbbc362bd73f492e (diff) | |
download | bcm5719-llvm-368c6301a26b8bf674e88d0b4b343efd09ae7edf.tar.gz bcm5719-llvm-368c6301a26b8bf674e88d0b4b343efd09ae7edf.zip |
remove errant parenthesis.
llvm-svn: 134717
-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 9ee556e0c7f..dd952c91b4b 100644 --- a/lldb/source/Expression/ClangExpressionDeclMap.cpp +++ b/lldb/source/Expression/ClangExpressionDeclMap.cpp @@ -1918,7 +1918,7 @@ ClangExpressionDeclMap::GetDecls (NameSearchContext &context, const ConstString void *pointer_target_type = NULL; if (!ClangASTContext::IsPointerType(self_user_type.GetOpaqueQualType(), - &pointer_target_type)) + &pointer_target_type) || pointer_target_type == NULL) return; |