Skip to content

Commit 19c5733

Browse files
martinboehmecopybara-github
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 673783166 Change-Id: I976923d4360009951216fa80ecb3886642e172cd
1 parent 83e7849 commit 19c5733

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

differ.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ void DeleteFlowGraphs(absl::Nullable<FlowGraphs*> flow_graphs) {
195195
}
196196

197197
ScopedCleanup::ScopedCleanup(
198-
absl::Nonnull<FlowGraphs*> flow_graphs1,
199-
absl::Nonnull<FlowGraphs*> flow_graphs2,
198+
absl::Nullable<FlowGraphs*> flow_graphs1,
199+
absl::Nullable<FlowGraphs*> flow_graphs2,
200200
absl::Nullable<Instruction::Cache*> instruction_cache)
201201
: flow_graphs1_(flow_graphs1),
202202
flow_graphs2_(flow_graphs2),

differ.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ void Diff(absl::Nonnull<MatchingContext*> context,
4545

4646
class ScopedCleanup {
4747
public:
48-
ScopedCleanup(absl::Nonnull<FlowGraphs*> flow_graphs1,
49-
absl::Nonnull<FlowGraphs*> flow_graphs2,
48+
ScopedCleanup(absl::Nullable<FlowGraphs*> flow_graphs1,
49+
absl::Nullable<FlowGraphs*> flow_graphs2,
5050
absl::Nullable<Instruction::Cache*> instruction_cache);
5151
~ScopedCleanup();
5252

0 commit comments

Comments
 (0)