From d4746301ab95e4e3640375a50621eaf8df428526 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 20 Aug 2010 16:35:30 +0000 Subject: [PATCH] Add a comment. llvm-svn: 111640 --- include/llvm/Support/raw_ostream.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index df7f16e55ba..3f576df8197 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -372,7 +372,8 @@ public: /// has_error - Return the value of the flag in this raw_fd_ostream indicating /// whether an output error has been encountered. - /// This doesn't implicitly flush any pending output. + /// This doesn't implicitly flush any pending output. Also, it doesn't + /// guarantee to detect all errors unless the the stream has been closed. bool has_error() const { return Error; }