Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions clang/include/clang/AST/Expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -634,8 +634,8 @@ class Expr : public ValueStmt {

EvalStatus() = default;

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

// isGlobalLValue - Return true if the evaluated lvalue expression
// is global.
/// Return true if the evaluated lvalue expression
/// is global.
bool isGlobalLValue() const;
};

Expand Down