summaryrefslogtreecommitdiff
path: root/include/llvm/Support/FormattedStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/FormattedStream.h')
-rw-r--r--include/llvm/Support/FormattedStream.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/Support/FormattedStream.h b/include/llvm/Support/FormattedStream.h
index a74ee6f7d9..a7824f0aae 100644
--- a/include/llvm/Support/FormattedStream.h
+++ b/include/llvm/Support/FormattedStream.h
@@ -60,11 +60,7 @@ namespace llvm
///
iterator Scanned;
- virtual void write_impl(const char *Ptr, size_t Size) {
- ComputeColumn();
- TheStream->write(Ptr, Size);
- Scanned = begin();
- }
+ virtual void write_impl(const char *Ptr, size_t Size);
/// current_pos - Return the current position within the stream,
/// not counting the bytes currently in the buffer.