Fix warning in NSDictionary.cpp
authorPavel Labath <labath@google.com>
Tue, 1 Mar 2016 11:40:47 +0000 (11:40 +0000)
committerPavel Labath <labath@google.com>
Tue, 1 Mar 2016 11:40:47 +0000 (11:40 +0000)
llvm-svn: 262322

lldb/source/Plugins/Language/ObjC/NSDictionary.cpp

index f18cd68..60924fa 100644 (file)
@@ -255,7 +255,7 @@ lldb_private::formatters::NSDictionarySummaryProvider (ValueObject& valobj, Stre
     static const ConstString g_Dictionary1("__NSSingleEntryDictionaryI");
     
     if (class_name.IsEmpty())
-        return nullptr;
+        return false;
 
     if (class_name == g_DictionaryI)
     {