Skip to content

Commit ddb9c78

Browse files
authored
[clang][Expr][NFC] Fix some doc comments (#159504)
Use proper doc comments here instead of regular comments.
1 parent 93faaf4 commit ddb9c78

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/include/clang/AST/Expr.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,8 @@ class Expr : public ValueStmt {
634634

635635
EvalStatus() = default;
636636

637-
// hasSideEffects - Return true if the evaluated expression has
638-
// side effects.
637+
/// Return true if the evaluated expression has
638+
/// side effects.
639639
bool hasSideEffects() const {
640640
return HasSideEffects;
641641
}
@@ -646,8 +646,8 @@ class Expr : public ValueStmt {
646646
/// Val - This is the value the expression can be folded to.
647647
APValue Val;
648648

649-
// isGlobalLValue - Return true if the evaluated lvalue expression
650-
// is global.
649+
/// Return true if the evaluated lvalue expression
650+
/// is global.
651651
bool isGlobalLValue() const;
652652
};
653653

0 commit comments

Comments
 (0)