We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa30e80 commit 2553788Copy full SHA for 2553788
runtime/core/exec_aten/exec_aten.h
@@ -61,8 +61,8 @@ template <typename T>
61
using ArrayRef = c10::ArrayRef<T>;
62
template <typename T>
63
using optional = std::optional<T>;
64
-using nullopt_t = c10::nullopt_t;
65
-using c10::nullopt;
+using nullopt_t = std::nullopt_t;
+using std::nullopt;
66
using ScalarType = at::ScalarType;
67
using Scalar = c10::Scalar;
68
using MemoryFormat = c10::MemoryFormat;
0 commit comments