forked from OSchip/llvm-project
Use the correct class/struct keyword so that they match the declarations.
llvm-svn: 153932
This commit is contained in:
parent
c9851e2630
commit
cac9d9b3f6
|
@ -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
|
||||
//------------------------------------------------------------------
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue