diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-03-07 08:57:31 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-03-07 08:57:31 +0000 |
| commit | 1e3c1d38f2ce9eb48fea3d9922b41adf59ff0a6e (patch) | |
| tree | beb80fd9c5f574c637958606e47f359423dc25e9 | |
| parent | 7c5dcb6ccf88582031b93bc0c0e0c2de8a81cc96 (diff) | |
| download | bcm5719-llvm-1e3c1d38f2ce9eb48fea3d9922b41adf59ff0a6e.tar.gz bcm5719-llvm-1e3c1d38f2ce9eb48fea3d9922b41adf59ff0a6e.zip | |
Correct the documentation to give a legal example of a raw string literal.
llvm-svn: 152216
| -rw-r--r-- | clang/docs/LanguageExtensions.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/docs/LanguageExtensions.html b/clang/docs/LanguageExtensions.html index 9f271900cb9..12a91c9e6f2 100644 --- a/clang/docs/LanguageExtensions.html +++ b/clang/docs/LanguageExtensions.html @@ -775,7 +775,8 @@ is enabled.</p> range-based for loop is enabled. </p> <h4 id="cxx_raw_string_literals">C++11 raw string literals</h4> -<p>Use <tt>__has_feature(cxx_raw_string_literals)</tt> to determine if support for raw string literals (e.g., <tt>R"foo\bar"</tt>) is enabled.</p> +<p>Use <tt>__has_feature(cxx_raw_string_literals)</tt> to determine if support +for raw string literals (e.g., <tt>R"x(foo\bar)x"</tt>) is enabled.</p> <h4 id="cxx_rvalue_references">C++11 rvalue references</h4> |

