Skip to content

Commit

Permalink
Fix Wdocumentation warning. NFCI.
Browse files Browse the repository at this point in the history
llvm-svn: 375434
  • Loading branch information
RKSimon committed Oct 21, 2019
1 parent ffd87cb commit 67854aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/include/clang/AST/ExprCXX.h
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 67854aa

Please sign in to comment.