aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2021-04-20 11:41:04 +0100
committerSimon Pilgrim <llvm-dev@redking.me.uk>2021-04-20 12:37:00 +0100
commitfce8c10b6813ef283b68275b0dabc813f0310958 (patch)
treea7e8423a2143366efd5932f397435a1041838618
parent[mlir] test gather/scatter index vector of type index. (diff)
downloadllvm-project-fce8c10b6813ef283b68275b0dabc813f0310958.tar.gz
llvm-project-fce8c10b6813ef283b68275b0dabc813f0310958.tar.bz2
llvm-project-fce8c10b6813ef283b68275b0dabc813f0310958.zip
Fix Wdocumentation warning by consistently using '///' comment blocks. NFCI.
-rw-r--r--clang/include/clang/Format/Format.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h
index 104b9346cf52..98d2f16e2eef 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,