From: Chris Lattner Date: Fri, 4 Jun 2004 20:34:51 +0000 (+0000) Subject: Remove support for printing strings from the cached writer X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fb04197c0173352a3d574f91e710d330b9604fb2;p=oota-llvm.git Remove support for printing strings from the cached writer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14023 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Assembly/CachedWriter.h b/include/llvm/Assembly/CachedWriter.h index b3f572feb34..b3f964de5a4 100644 --- a/include/llvm/Assembly/CachedWriter.h +++ b/include/llvm/Assembly/CachedWriter.h @@ -70,10 +70,6 @@ public: *Out << X; return *this; } - inline CachedWriter& operator<<(const std::string &X) { - *Out << X; - return *this; - } inline CachedWriter &operator<<(enum TypeWriter tw) { SymbolicTypes = (tw == SymTypeOn);