From e4666594d091e8fb540071ed52a33fc182fc525c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 2 Mar 2005 03:43:55 +0000 Subject: [PATCH] Now that type does not derive from Value, these do not need to be virtual. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20393 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Type.h b/include/llvm/Type.h index 8a0ef8ffb54..82b9905f358 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -122,10 +122,10 @@ protected: std::vector ContainedTys; public: - virtual void print(std::ostream &O) const; + void print(std::ostream &O) const; /// @brief Debugging support: print to stderr - virtual void dump() const; + void dump() const; //===--------------------------------------------------------------------===// // Property accessors for dealing with types... Some of these virtual methods