diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-08-08 20:02:20 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-08-08 20:02:20 +0000 |
commit | eb9422b19d427edb8fec666823a4a0f7078c9c1b (patch) | |
tree | c099abf4a265461b34c4de63a184963b5ecb0cd8 /include/llvm/Support/MemoryBuffer.h | |
parent | 2372ccc111cd8d33553fb20116a449ba5df5f6e9 (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.h | 2 |
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(); |