From: Reid Spencer Date: Thu, 23 Sep 2004 14:49:45 +0000 (+0000) Subject: Change Value from a "struct" to a "class" so that VC 7.1 doesn't generate X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=530036b5e89e41787056120666bf0128ea8addd8;p=oota-llvm.git Change Value from a "struct" to a "class" so that VC 7.1 doesn't generate missing symbols when its referenced as a class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16496 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 2b10a841a01..2aed4d2f503 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -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;