diff options
-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 |