diff options
Diffstat (limited to 'source/Core/ValueObjectList.cpp')
| -rw-r--r-- | source/Core/ValueObjectList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Core/ValueObjectList.cpp b/source/Core/ValueObjectList.cpp index 00aee798c0e3c..0dd07252888fe 100644 --- a/source/Core/ValueObjectList.cpp +++ b/source/Core/ValueObjectList.cpp @@ -87,8 +87,8 @@ ValueObjectSP ValueObjectList::FindValueObjectByUID(lldb::user_id_t uid) { collection::iterator pos, end = m_value_objects.end(); for (pos = m_value_objects.begin(); pos != end; ++pos) { - // Watch out for NULL objects in our list as the list - // might get resized to a specific size and lazily filled in + // Watch out for NULL objects in our list as the list might get resized to + // a specific size and lazily filled in ValueObject *valobj = (*pos).get(); if (valobj && valobj->GetID() == uid) { valobj_sp = *pos; |
