From: Nick Lewycky Date: Wed, 15 Jan 2014 08:33:00 +0000 (+0000) Subject: This code block wasn't showing up in the html. Try this? X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ca669059fce7754e2b2dd4b3728939aedc55ff0;p=clang This code block wasn't showing up in the html. Try this? git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199306 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LanguageExtensions.rst b/docs/LanguageExtensions.rst index b6933838f0..561880525f 100644 --- a/docs/LanguageExtensions.rst +++ b/docs/LanguageExtensions.rst @@ -1462,6 +1462,7 @@ remaining enable_if attributes. In this way, we pick the most specific overload out of a number of viable overloads using enable_if. .. code-block:: c++ + void f() __attribute__((enable_if(true, ""))); // #1 void f() __attribute__((enable_if(true, ""))) __attribute__((enable_if(true, ""))); // #2