From 530036b5e89e41787056120666bf0128ea8addd8 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 23 Sep 2004 14:49:45 +0000 Subject: [PATCH] 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 --- include/llvm/Value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1