Skip to content

Commit

Permalink
add missing typename
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugobros3 committed Jul 13, 2024
1 parent 1f1a3b5 commit 4331cad
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 @@ -64,7 +64,7 @@ static consteval bool fits(unsigned len, Mapping<dst_len> mapping) {
template<typename T, unsigned len>
struct vec_impl {
using This = vec_impl<T, len>;
using Native = vec_native_type<T, len>::Native;
using Native = typename vec_native_type<T, len>::Native;

vec_impl() = default;
vec_impl(T s) {}
Expand Down

0 comments on commit 4331cad

Please sign in to comment.