[Lldb-commits] [lldb] r222063 - I don't need this ivar. It was probably there from the olden days where dynamic type support was flakey. Remove and save space

Enrico Granata egranata at apple.com
Fri Nov 14 15:38:24 PST 2014


Author: enrico
Date: Fri Nov 14 17:38:23 2014
New Revision: 222063

URL: http://llvm.org/viewvc/llvm-project?rev=222063&view=rev
Log:
I don't need this ivar. It was probably there from the olden days where dynamic type support was flakey. Remove and save space

Modified:
    lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h

Modified: lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h?rev=222063&r1=222062&r2=222063&view=diff
==============================================================================
--- lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h (original)
+++ lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h Fri Nov 14 17:38:23 2014
@@ -249,8 +249,7 @@ public:
     FormattersContainer(std::string name,
                     IFormatChangeListener* lst) :
     m_format_map(lst),
-    m_name(name),
-    m_id_cs(ConstString("id"))
+    m_name(name)
     {
     }
     
@@ -327,15 +326,11 @@ public:
     }
     
 protected:
-        
     BackEndType m_format_map;
-    
     std::string m_name;
     
     DISALLOW_COPY_AND_ASSIGN(FormattersContainer);
     
-    ConstString m_id_cs;
-                           
     void
     Add_Impl (const MapKeyType &type, const MapValueType& entry, lldb::RegularExpressionSP *dummy)
     {





More information about the lldb-commits mailing list