Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/signature.cc
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ absl::optional<TypeSpec> ParseBuiltinOrWrapper(std::string_view name_str) {
std::make_unique<TypeSpec>(DynTypeSpec())));
}

return absl::nullopt;
return std::nullopt;
}

std::string Unescape(std::string_view str) {
Expand Down
4 changes: 2 additions & 2 deletions internal/time.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ absl::Duration MaxDuration() {
// intent is to widen the CEL spec to support the larger range and match
// google.protobuf.Duration from protocol buffer messages, which this
// implementation currently supports.
// TODO(google/cel-spec/issues/214): revisit
// TODO(cel-expr/cel-spec/issues/214): revisit
return absl::Seconds(google::protobuf::util::TimeUtil::kDurationMaxSeconds) +
absl::Nanoseconds(google::protobuf::util::TimeUtil::kDurationMaxNanoseconds);
}
Expand All @@ -52,7 +52,7 @@ absl::Duration MinDuration() {
// intent is to widen the CEL spec to support the larger range and match
// google.protobuf.Duration from protocol buffer messages, which this
// implementation currently supports.
// TODO(google/cel-spec/issues/214): revisit
// TODO(cel-expr/cel-spec/issues/214): revisit
return absl::Seconds(google::protobuf::util::TimeUtil::kDurationMinSeconds) +
absl::Nanoseconds(google::protobuf::util::TimeUtil::kDurationMinNanoseconds);
}
Expand Down
Loading