From: Chris Lattner Date: Wed, 2 Mar 2005 03:43:55 +0000 (+0000) Subject: Now that type does not derive from Value, these do not need to be virtual. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e4666594d091e8fb540071ed52a33fc182fc525c;p=oota-llvm.git 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 --- 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