mirror of
https://github.com/g-truc/glm.git
synced 2025-04-10 15:23:53 +00:00
fix compiler error
This commit is contained in:
parent
3a1091d2cd
commit
fda04e79aa
1 changed files with 2 additions and 1 deletions
|
@ -85,8 +85,9 @@ namespace glm::detail
|
|||
gcc_vec_t converted = __builtin_convertvector(fetch_vec3_as_vec4(v), Vec4);
|
||||
return gcc_vec_to_data(converted);
|
||||
}
|
||||
} else {
|
||||
} else {
|
||||
gcc_vec_t converted = __builtin_convertvector(v.data, gcc_vec_t);
|
||||
return gcc_vec_to_data(converted);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue