File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ void DeleteFlowGraphs(absl::Nullable<FlowGraphs*> flow_graphs) {
195
195
}
196
196
197
197
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,
200
200
absl::Nullable<Instruction::Cache*> instruction_cache)
201
201
: flow_graphs1_(flow_graphs1),
202
202
flow_graphs2_ (flow_graphs2),
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ void Diff(absl::Nonnull<MatchingContext*> context,
45
45
46
46
class ScopedCleanup {
47
47
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,
50
50
absl::Nullable<Instruction::Cache*> instruction_cache);
51
51
~ScopedCleanup ();
52
52
You can’t perform that action at this time.
0 commit comments