From: Richard Smith Date: Wed, 7 Mar 2012 08:57:31 +0000 (+0000) Subject: Correct the documentation to give a legal example of a raw string literal. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80134582b6fd4836a167c2c731ed0023ceec9100;p=clang Correct the documentation to give a legal example of a raw string literal. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152216 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index 9f271900cb..12a91c9e6f 100644 --- a/docs/LanguageExtensions.html +++ b/docs/LanguageExtensions.html @@ -775,7 +775,8 @@ is enabled.

range-based for loop is enabled.

C++11 raw string literals

-

Use __has_feature(cxx_raw_string_literals) to determine if support for raw string literals (e.g., R"foo\bar") is enabled.

+

Use __has_feature(cxx_raw_string_literals) to determine if support +for raw string literals (e.g., R"x(foo\bar)x") is enabled.

C++11 rvalue references