From 7ffcc43205ee7b6a91c8e088c910b6c9b80abe17 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 13 Jan 2017 01:52:04 +0000 Subject: [PATCH] Add a necessary newline for diagnose_if documentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@291879 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/AttrDocs.td | 1 + 1 file changed, 1 insertion(+) diff --git a/include/clang/Basic/AttrDocs.td b/include/clang/Basic/AttrDocs.td index 49b0a533ce..8f6a7ea601 100644 --- a/include/clang/Basic/AttrDocs.td +++ b/include/clang/Basic/AttrDocs.td @@ -386,6 +386,7 @@ warnings or errors at compile-time if calls to the attributed function meet certain user-defined criteria. For example: .. code-block:: c + void abs(int a) __attribute__((diagnose_if(a >= 0, "Redundant abs call", "warning"))); void must_abs(int a) -- 2.40.0