Skip to content

Commit

Permalink
[Sema] Modernize Usage (NFC)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazutakahirata committed Aug 20, 2023
1 parent c6bcdc4 commit 4d434f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/lib/Sema/SemaChecking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15896,10 +15896,10 @@ class SequenceChecker : public ConstEvaluatedExprVisitor<SequenceChecker> {
/// Bundle together a sequencing region and the expression corresponding
/// to a specific usage. One Usage is stored for each usage kind in UsageInfo.
struct Usage {
const Expr *UsageExpr;
const Expr *UsageExpr = nullptr;
SequenceTree::Seq Seq;

Usage() : UsageExpr(nullptr) {}
Usage() = default;
};

struct UsageInfo {
Expand Down

0 comments on commit 4d434f7

Please sign in to comment.