forked from OSchip/llvm-project
Fixing a compiler warning about has_children being used before being initialized
llvm-svn: 166462
This commit is contained in:
parent
e2a9e90c88
commit
db8142b8e8
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue