Skip to content

Commit

Permalink
fix default construct
Browse files Browse the repository at this point in the history
  • Loading branch information
YGXXD committed Dec 16, 2024
1 parent da23d7c commit 3d0b201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ktm/interface/vector/ivec_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ struct ivec_data<Father, vec<N, T>> : Father
using Father::Father;
typename detail::vec_data_implement::vec_storage<N, T>::type st;

ivec_data() = default;
KTM_FUNC constexpr ivec_data() noexcept : st{} { };
ivec_data(const ivec_data&) = default;
ivec_data(ivec_data&&) = default;
ivec_data& operator=(const ivec_data&) = default;
Expand Down

0 comments on commit 3d0b201

Please sign in to comment.