[llvm-commits] CVS: llvm/include/llvm/Value.h
Reid Spencer
reid at x10sys.com
Thu Sep 23 07:49:55 PDT 2004
Changes in directory llvm/include/llvm:
Value.h updated: 1.63 -> 1.64
---
Log message:
Change Value from a "struct" to a "class" so that VC 7.1 doesn't generate
missing symbols when its referenced as a class.
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/Value.h
diff -u llvm/include/llvm/Value.h:1.63 llvm/include/llvm/Value.h:1.64
--- llvm/include/llvm/Value.h:1.63 Wed Sep 1 17:55:34 2004
+++ llvm/include/llvm/Value.h Thu Sep 23 09:49:45 2004
@@ -40,7 +40,7 @@
/// 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;
More information about the llvm-commits
mailing list