[Lldb-commits] [lldb] r132829 - /lldb/trunk/include/lldb/Core/UniqueCStringMap.h

Greg Clayton gclayton at apple.com
Thu Jun 9 19:22:01 PDT 2011


Author: gclayton
Date: Thu Jun  9 21:22:01 2011
New Revision: 132829

URL: http://llvm.org/viewvc/llvm-project?rev=132829&view=rev
Log:
Make the size accessor const.


Modified:
    lldb/trunk/include/lldb/Core/UniqueCStringMap.h

Modified: lldb/trunk/include/lldb/Core/UniqueCStringMap.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/UniqueCStringMap.h?rev=132829&r1=132828&r2=132829&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/UniqueCStringMap.h (original)
+++ lldb/trunk/include/lldb/Core/UniqueCStringMap.h Thu Jun  9 21:22:01 2011
@@ -175,7 +175,7 @@
     // Get the total number of entries in this map.
     //------------------------------------------------------------------
     size_t
-    GetSize ()
+    GetSize () const
     {
         return m_map.size();
     }





More information about the lldb-commits mailing list