Skip to content

Commit

Permalink
shady_vec.h: add missing typename
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugobros3 committed Jul 22, 2024
1 parent 0ed4a59 commit 842e341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcc-std/include/shady_vec.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ struct vec_impl {
template <int dst_len, Mapping<dst_len> mapping> // requires(fits<dst_len>(len, mapping))
struct Swizzler {
using That = vec_impl<T, dst_len>;
using ThatNative = vec_native_type<T, dst_len>::Native;
using ThatNative = typename vec_native_type<T, dst_len>::Native;

operator That() const requires(dst_len > 1 && fits<dst_len>(len, mapping)) {
auto src = reinterpret_cast<const This*>(this);
Expand Down

0 comments on commit 842e341

Please sign in to comment.