diff options
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 5f6578fcb5..f7fbe21ee3 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -250,8 +250,8 @@ protected: void error_detected() { Error = true; } typedef char * iterator; - iterator begin(void) { return OutBufStart; } - iterator end(void) { return OutBufCur; } + iterator begin() { return OutBufStart; } + iterator end() { return OutBufCur; } //===--------------------------------------------------------------------===// // Private Interface |