Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN authored Jan 2, 2025
1 parent 90e1e75 commit 335c39a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ll/api/base/Alias.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct TypedStorageImpl {

template <size_t A, size_t S, class T>
struct TypedStorageType {
using Type = typename TypedStorageImpl<A, S, typename std::remove_vc_t<T>>;
using Type = typename TypedStorageImpl<A, S, typename std::remove_cv_t<T>>;
};
template <size_t A, size_t S, class T>
requires(std::is_reference_v<T> || std::is_scalar_v<T>)
Expand Down

0 comments on commit 335c39a

Please sign in to comment.