Skip to content

Commit c2df758

Browse files
Automated Code Change
PiperOrigin-RevId: 937285668
1 parent e846dbf commit c2df758

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tensorflow/c/c_api_experimental_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ class ShapeInferenceTest : public ::testing::Test {
148148

149149
absl::optional<std::vector<int64_t>> make_shape(
150150
std::vector<int64_t>&& dims) const {
151-
return absl::make_optional(dims);
151+
return std::make_optional(dims);
152152
}
153153

154154
absl::optional<std::vector<int64_t>> unknown_shape() const {
155-
return absl::nullopt;
155+
return std::nullopt;
156156
}
157157

158158
static constexpr int64_t kUnknownDim =

0 commit comments

Comments
 (0)