From ce5fcc30ae71ee965dbde2da31e47e05b47ff248 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 22 Aug 2005 16:24:25 +0000 Subject: [PATCH] Revert my patch which changed the code to not work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22965 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandLine.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/CommandLine.html b/docs/CommandLine.html index 02a5707eec7..83db04d6ed4 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -1714,7 +1714,7 @@ our example, we implement parse as:

while (1) { switch (*End++) { - case 0: break; // No error + case 0: return false; // No error case 'i': // Ignore the 'i' in KiB if people use that case 'b': case 'B': // Ignore B suffix break; @@ -1728,7 +1728,6 @@ our example, we implement parse as:

return O.error(": '" + Arg + "' value invalid for file size argument!"); } } - return false; } -- 2.34.1