mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
we should use 'class' for non-pod types instead of 'struct' to
make it easier to deal with the VC++ struct/class bug. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55290 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5a1c68c776
commit
4238746230
@ -24,7 +24,8 @@ class BasicBlock;
|
||||
class Instruction;
|
||||
class raw_ostream;
|
||||
|
||||
struct AssemblyAnnotationWriter {
|
||||
class AssemblyAnnotationWriter {
|
||||
public:
|
||||
|
||||
virtual ~AssemblyAnnotationWriter();
|
||||
|
||||
|
@ -36,7 +36,7 @@ class TypeSymbolTable;
|
||||
template<typename ValueTy> class StringMapEntry;
|
||||
typedef StringMapEntry<Value*> ValueName;
|
||||
class raw_ostream;
|
||||
struct AssemblyAnnotationWriter;
|
||||
class AssemblyAnnotationWriter;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Value Class
|
||||
|
Loading…
Reference in New Issue
Block a user