Skip to content

Commit

Permalink
c10::nullopt -> std::nullopt
Browse files Browse the repository at this point in the history
Summary:
X-link: pytorch/audio#3848

X-link: pytorch/ao#1151

X-link: facebookincubator/AITemplate#1032

Reviewed By: houseroad

Differential Revision: D64835967
  • Loading branch information
r-barnes authored and facebook-github-bot committed Oct 23, 2024
1 parent fa30e80 commit a6bab0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/core/exec_aten/exec_aten.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ template <typename T>
using ArrayRef = c10::ArrayRef<T>;
template <typename T>
using optional = std::optional<T>;
using nullopt_t = c10::nullopt_t;
using c10::nullopt;
using nullopt_t = std::nullopt_t;
using std::nullopt;
using ScalarType = at::ScalarType;
using Scalar = c10::Scalar;
using MemoryFormat = c10::MemoryFormat;
Expand Down

0 comments on commit a6bab0e

Please sign in to comment.