Skip to content

Commit

Permalink
Quick-hack fix for MB: we need default axis type to be 16 bits (a pro…
Browse files Browse the repository at this point in the history
…per fix would be to make this configurable :grimace:).
  • Loading branch information
Domagoj Šarić committed Jul 19, 2023
1 parent a0a1066 commit c969e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/kwk/detail/sequence/helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ namespace kwk::__
// Type short-cut for internal representation of types in axis
//====================================================================================================================
template<typename T> struct stored_type : T {};
template<concepts::joker T> struct stored_type<T> { using type = std::int32_t; };
template<concepts::joker T> struct stored_type<T> { using type = std::uint16_t; };

template<typename T>
using stored_t = typename stored_type<typename T::content_type>::type;
Expand Down

0 comments on commit c969e1d

Please sign in to comment.