Use the correct class/struct keyword so that they match the declarations.

llvm-svn: 153932
This commit is contained in:
Bill Wendling 2012-04-03 04:15:34 +00:00
parent c9851e2630
commit cac9d9b3f6
2 changed files with 9 additions and 2 deletions

View File

@ -81,6 +81,13 @@ public:
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
//------------------------------------------------------------------

View File

@ -176,7 +176,7 @@ template <unsigned N> class StreamBuffer;
class StreamFile;
class StreamString;
class StringList;
class StringSummaryFormat;
struct StringSummaryFormat;
class TypeSummaryImpl;
class Symbol;
class SymbolContext;
@ -223,7 +223,7 @@ class UnwindTable;
class UserSettingsController;
class VMRange;
class Value;
struct TypeFormatImpl;
class TypeFormatImpl;
class ValueList;
class ValueObject;
class ValueObjectChild;