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
This commit is contained in:
Chris Lattner 2004-06-04 20:34:51 +00:00
parent 24527fd2ae
commit fb04197c01

View File

@ -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);