From fce8c10b6813ef283b68275b0dabc813f0310958 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Tue, 20 Apr 2021 11:41:04 +0100 Subject: [PATCH] Fix Wdocumentation warning by consistently using '///' comment blocks. NFCI. --- clang/include/clang/Format/Format.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h index 104b934..98d2f16 100644 --- a/clang/include/clang/Format/Format.h +++ b/clang/include/clang/Format/Format.h @@ -1918,19 +1918,19 @@ struct FormatStyle { /// \code /// struct foo { /// private: - // + /// /// int i; /// protected: - // + /// /// int j; /// /* comment */ /// public: - // + /// /// foo() {} /// private: /// /// protected: - // + /// /// }; /// \endcode ELAAMS_Always, -- 2.7.4