Skip to content

Commit

Permalink
fix: fix ambiguous
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN authored Jan 3, 2025
1 parent 1ed01cd commit a09ef31
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/ll/api/base/Alias.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,8 @@ struct TypedStorageImpl {
[[nodiscard]] T const& operator*() const& { return get(); }
[[nodiscard]] T&& operator*() && { return std::move(get()); }
[[nodiscard]] T const&& operator*() const&& { return std::move(get()); }
[[nodiscard]] operator T&() & { return get(); }
[[nodiscard]] operator T const&() const& { return get(); }
[[nodiscard]] operator T&&() && { return std::move(get()); }
[[nodiscard]] operator T const&&() const&& { return std::move(get()); }
[[nodiscard]] operator T&() { return get(); }
[[nodiscard]] operator T const&() const { return get(); }
};

template <size_t A, size_t S, class T>
Expand Down

0 comments on commit a09ef31

Please sign in to comment.