Skip to content
Snippets Groups Projects
Commit 470b757f authored by Sergey Gorbunov's avatar Sergey Gorbunov
Browse files

L1: compilation fix after rebase

parent cdd42ecd
No related branches found
No related tags found
1 merge request!939L1: cleanup SIMD vectors
Pipeline #18778 passed
......@@ -21,7 +21,7 @@ namespace boost
template<class Archive>
void serialize(Archive& ar, fvec& vect, const unsigned int)
{
for (int i = 0; i < fvecLen; ++i) {
for (size_t i = 0; i < fvec::size(); ++i) {
ar&(reinterpret_cast<fscal*>(&vect))[i];
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment