Skip to content

Commit

Permalink
Fix Wdocumentation warning. NFCI.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375434 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
RKSimon committed Oct 21, 2019
1 parent 14947e8 commit 9aba456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/clang/AST/ExprCXX.h
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ class CUDAKernelCallExpr final : public CallExpr {
/// - <tt>a != b</tt> -> <tt>!(a == b)</tt>
/// - <tt>a != b</tt> -> <tt>!(b == a)</tt>
/// - For \c \@ in \c <, \c <=, \c >, \c >=, \c <=>:
/// - <tt>a @ b<tt> -> <tt>(a <=> b) @ 0</tt>
/// - <tt>a @ b<tt> -> <tt>0 @ (b <=> a)</tt>
/// - <tt>a @ b</tt> -> <tt>(a <=> b) @ 0</tt>
/// - <tt>a @ b</tt> -> <tt>0 @ (b <=> a)</tt>
///
/// This expression provides access to both the original syntax and the
/// rewritten expression.
Expand Down

0 comments on commit 9aba456

Please sign in to comment.