1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Change Value from a "struct" to a "class" so that VC 7.1 doesn't generate

missing symbols when its referenced as a class.

llvm-svn: 16496
This commit is contained in:
Reid Spencer 2004-09-23 14:49:45 +00:00
parent 6210b04509
commit 67f6472f19

View File

@ -40,7 +40,7 @@ class SymbolTable;
/// Value - The base class of all values computed by a program that may be used
/// as operands to other values.
///
struct Value {
class Value {
private:
unsigned SubclassID; // Subclass identifier (for isa/dyn_cast)
PATypeHolder Ty;