From: NAKAMURA Takumi Date: Mon, 11 Apr 2011 03:27:31 +0000 (+0000) Subject: docs/CommandLine.html: "ize. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dd499c3dd2d94f37a46b9275bda5d38c75b58430;p=oota-llvm.git docs/CommandLine.html: "ize. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129267 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandLine.html b/docs/CommandLine.html index e21ea8042d5..83b2ebbe511 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -231,11 +231,11 @@ represented like this:

cl::opt<string> OutputFilename("o", cl::desc("Specify output filename"), cl::value_desc("filename")); -

This declares a global variable "OutputFilename" that is used to -capture the result of the "o" argument (first parameter). We specify -that this is a simple scalar option by using the "cl::opt" template (as opposed to the "cl::list template), and tell the CommandLine library +

This declares a global variable "OutputFilename" that is used to +capture the result of the "o" argument (first parameter). We specify +that this is a simple scalar option by using the "cl::opt" template (as opposed to the "cl::list template), and tell the CommandLine library that the data type that we are parsing is a string.

The second and third parameters (which are optional) are used to specify what