[llvm-commits] CVS: llvm/include/llvm/Assembly/CachedWriter.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Jun 4 15:39:01 PDT 2004
Changes in directory llvm/include/llvm/Assembly:
CachedWriter.h updated: 1.16 -> 1.17
---
Log message:
Remove support for printing strings from the cached writer
---
Diffs of the changes: (+0 -4)
Index: llvm/include/llvm/Assembly/CachedWriter.h
diff -u llvm/include/llvm/Assembly/CachedWriter.h:1.16 llvm/include/llvm/Assembly/CachedWriter.h:1.17
--- llvm/include/llvm/Assembly/CachedWriter.h:1.16 Wed May 26 02:37:11 2004
+++ llvm/include/llvm/Assembly/CachedWriter.h Fri Jun 4 15:34:51 2004
@@ -70,10 +70,6 @@
*Out << X;
return *this;
}
- inline CachedWriter& operator<<(const std::string &X) {
- *Out << X;
- return *this;
- }
inline CachedWriter &operator<<(enum TypeWriter tw) {
SymbolicTypes = (tw == SymTypeOn);
More information about the llvm-commits
mailing list