From eb9422b19d427edb8fec666823a4a0f7078c9c1b Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 8 Aug 2007 20:02:20 +0000 Subject: [PATCH] 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 --- include/llvm/Support/MemoryBuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/MemoryBuffer.h b/include/llvm/Support/MemoryBuffer.h index bc61c34eb0f..1e3a154ede6 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(); -- 2.34.1