Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
Summary: Avoid future keyword.

Reviewed By: NTillmann

Differential Revision: D47534586

fbshipit-source-id: 1a39f3cc810917656c27f2c8fd080da4bb1a3358
  • Loading branch information
agampe authored and facebook-github-bot committed Jul 18, 2023
1 parent b6f3110 commit 68b1621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/redex-all/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ void add_pass_properties_reflection(Json::Value& value, Pass* pass) {
}

Json::Value establishes = Json::arrayValue;
Json::Value requires = Json::arrayValue;
Json::Value requires_ = Json::arrayValue;
Json::Value preserves = Json::arrayValue;
Json::Value requires_finally = Json::arrayValue;

Expand All @@ -254,7 +254,7 @@ void add_pass_properties_reflection(Json::Value& value, Pass* pass) {
establishes.append(property);
}
if (inter.requires_) {
requires.append(property);
requires_.append(property);
}
if (inter.preserves) {
preserves.append(property);
Expand All @@ -266,7 +266,7 @@ void add_pass_properties_reflection(Json::Value& value, Pass* pass) {

Json::Value properties;
properties["establishes"] = establishes;
properties["requires"] = requires;
properties["requires"] = requires_;
properties["preserves"] = preserves;
properties["requires_finally"] = requires_finally;

Expand Down

0 comments on commit 68b1621

Please sign in to comment.