X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=docs%2FCommandLine.rst;h=4c84d23297b45c789561630e27365a861f0824fc;hb=318b7cc7f10d41370929ff93274de29c11f87b81;hp=9b77a9890826c3e132d482ecc684461c0a00c199;hpb=eb4d746d7d89116ea1e1deca654cafa261748fcd;p=oota-llvm.git diff --git a/docs/CommandLine.rst b/docs/CommandLine.rst index 9b77a989082..4c84d23297b 100644 --- a/docs/CommandLine.rst +++ b/docs/CommandLine.rst @@ -925,12 +925,13 @@ This section describes the basic attributes that you can specify on options. .. code-block:: c++ - cl::opt<**bool**> Quiet("quiet"); + cl::opt Quiet("quiet"); .. _cl::desc(...): * The **cl::desc** attribute specifies a description for the option to be - shown in the ``-help`` output for the program. + shown in the ``-help`` output for the program. This attribute supports + multi-line descriptions with lines separated by '\n'. .. _cl::value_desc: