[Lldb-commits] [lldb] r153932 - in /lldb/trunk/include/lldb: Expression/RecordingMemoryManager.h lldb-forward.h

Bill Wendling isanbard at gmail.com
Mon Apr 2 21:15:35 PDT 2012


Author: void
Date: Mon Apr  2 23:15:34 2012
New Revision: 153932

URL: http://llvm.org/viewvc/llvm-project?rev=153932&view=rev
Log:
Use the correct class/struct keyword so that they match the declarations.

Modified:
    lldb/trunk/include/lldb/Expression/RecordingMemoryManager.h
    lldb/trunk/include/lldb/lldb-forward.h

Modified: lldb/trunk/include/lldb/Expression/RecordingMemoryManager.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Expression/RecordingMemoryManager.h?rev=153932&r1=153931&r2=153932&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Expression/RecordingMemoryManager.h (original)
+++ lldb/trunk/include/lldb/Expression/RecordingMemoryManager.h Mon Apr  2 23:15:34 2012
@@ -81,6 +81,13 @@
         m_default_mm_ap->setPoisonMemory (poison);
     }
 
+    virtual void *getPointerToNamedFunction(const std::string &Name,
+                                            bool AbortOnFailure = true)
+    {
+        return m_default_mm_ap->getPointerToNamedFunction(Name,
+                                                          AbortOnFailure);
+    }
+
     //------------------------------------------------------------------
     /// Passthrough interface stub
     //------------------------------------------------------------------

Modified: lldb/trunk/include/lldb/lldb-forward.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/lldb-forward.h?rev=153932&r1=153931&r2=153932&view=diff
==============================================================================
--- lldb/trunk/include/lldb/lldb-forward.h (original)
+++ lldb/trunk/include/lldb/lldb-forward.h Mon Apr  2 23:15:34 2012
@@ -176,7 +176,7 @@
 class   StreamFile;
 class   StreamString;
 class   StringList;
-class   StringSummaryFormat;
+struct  StringSummaryFormat;
 class   TypeSummaryImpl;
 class   Symbol;
 class   SymbolContext;
@@ -223,7 +223,7 @@
 class   UserSettingsController;
 class   VMRange;
 class   Value;
-struct  TypeFormatImpl;
+class   TypeFormatImpl;
 class   ValueList;
 class   ValueObject;
 class   ValueObjectChild;





More information about the lldb-commits mailing list