aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/MemoryBuffer.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-08-08 20:02:20 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-08-08 20:02:20 +0000
commiteb9422b19d427edb8fec666823a4a0f7078c9c1b (patch)
treec099abf4a265461b34c4de63a184963b5ecb0cd8 /include/llvm/Support/MemoryBuffer.h
parent2372ccc111cd8d33553fb20116a449ba5df5f6e9 (diff)
Make it clear that getSTDIN returns null when stdin is empty.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40940 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/MemoryBuffer.h')
-rw-r--r--include/llvm/Support/MemoryBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/MemoryBuffer.h b/include/llvm/Support/MemoryBuffer.h
index bc61c34eb0..1e3a154ede 100644
--- a/include/llvm/Support/MemoryBuffer.h
+++ b/include/llvm/Support/MemoryBuffer.h
@@ -76,7 +76,7 @@ public:
const char *BufferName = "");
/// getSTDIN - Read all of stdin into a file buffer, and return it. This
- /// fails if stdin is empty.
+ /// returns null if stdin is empty.
static MemoryBuffer *getSTDIN();