Skip to content

Commit 5707fcc

Browse files
CEL Dev Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 932837015
1 parent 80fc78a commit 5707fcc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

eval/public/containers/container_backed_map_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class CelValueEq {
8888
absl::optional<CelValue> CelMapBuilder::operator[](CelValue cel_key) const {
8989
auto item = values_map_.find(cel_key);
9090
if (item == values_map_.end()) {
91-
return absl::nullopt;
91+
return std::nullopt;
9292
}
9393
return item->second;
9494
}

eval/public/containers/internal_field_backed_map_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ absl::optional<CelValue> FieldBackedMapImpl::operator[](CelValue key) const {
154154
return CreateErrorValue(arena_, lookup_result.status());
155155
}
156156
if (!*lookup_result) {
157-
return absl::nullopt;
157+
return std::nullopt;
158158
}
159159

160160
// Get value descriptor treating it as a repeated field.

0 commit comments

Comments
 (0)