Fixing a compiler warning about has_children being used before being initialized

llvm-svn: 166462
This commit is contained in:
Enrico Granata 2012-10-23 02:07:54 +00:00
parent e2a9e90c88
commit db8142b8e8
1 changed files with 1 additions and 1 deletions

View File

@ -601,7 +601,7 @@ ValueObject::GetNumChildren ()
bool
ValueObject::MightHaveChildren()
{
bool has_children;
bool has_children = false;
clang_type_t clang_type = GetClangType();
if (clang_type)
{