Remove support for printing strings from the cached writer
authorChris Lattner <sabre@nondot.org>
Fri, 4 Jun 2004 20:34:51 +0000 (20:34 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 4 Jun 2004 20:34:51 +0000 (20:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14023 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Assembly/CachedWriter.h

index b3f572feb34e7c5a46e3c9b330858688a3fe2316..b3f964de5a473fa564ea047c341d145c01ce17b9 100644 (file)
@@ -70,10 +70,6 @@ public:
     *Out << X;
     return *this;
   }
     *Out << X;
     return *this;
   }
-  inline CachedWriter& operator<<(const std::string &X) {
-    *Out << X;
-    return *this;
-  }
 
   inline CachedWriter &operator<<(enum TypeWriter tw) {
     SymbolicTypes = (tw == SymTypeOn);
 
   inline CachedWriter &operator<<(enum TypeWriter tw) {
     SymbolicTypes = (tw == SymTypeOn);