Skip to content

Commit 2553788

Browse files
authored
c10::nullopt -> std::nullopt
Differential Revision: D64835967 Pull Request resolved: #6461
1 parent fa30e80 commit 2553788

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/core/exec_aten/exec_aten.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ template <typename T>
6161
using ArrayRef = c10::ArrayRef<T>;
6262
template <typename T>
6363
using optional = std::optional<T>;
64-
using nullopt_t = c10::nullopt_t;
65-
using c10::nullopt;
64+
using nullopt_t = std::nullopt_t;
65+
using std::nullopt;
6666
using ScalarType = at::ScalarType;
6767
using Scalar = c10::Scalar;
6868
using MemoryFormat = c10::MemoryFormat;

0 commit comments

Comments
 (0)