Return false, not 0, for bools.

Reviewers: clayborg

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D12873

llvm-svn: 247755
This commit is contained in:
Bruce Mitchener 2015-09-16 00:00:16 +00:00
parent 5747dd158b
commit 778e7ab5a3
2 changed files with 2 additions and 2 deletions

View File

@ -2531,7 +2531,7 @@ ClangASTContext::IsArrayType (void* type,
*size = 0;
if (is_incomplete)
*is_incomplete = false;
return 0;
return false;
}
bool

View File

@ -78,7 +78,7 @@ CompilerType::IsArrayType (CompilerType *element_type_ptr,
*size = 0;
if (is_incomplete)
*is_incomplete = false;
return 0;
return false;
}
bool