diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-02 03:43:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-02 03:43:55 +0000 |
commit | e4666594d091e8fb540071ed52a33fc182fc525c (patch) | |
tree | add4acade8aa07d02083cd4316b6097a98c16dc3 | |
parent | 00b95c311e20d549a2428a1b33ac5eea53f0d98e (diff) |
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
-rw-r--r-- | include/llvm/Type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h index 8a0ef8ffb5..82b9905f35 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -122,10 +122,10 @@ protected: std::vector<PATypeHandle> 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 |