mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
appease the clang beasts
This commit is contained in:
parent
9294afc082
commit
29c03ea5cf
|
@ -43,6 +43,12 @@ namespace zm {
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
vec3() : x(0), y(0), z(0) {
|
||||||
|
}
|
||||||
|
|
||||||
|
vec3(float x_, float y_, float z_) : x(x_), y(y_), z(z_) {
|
||||||
|
}
|
||||||
|
|
||||||
constexpr float* data() {
|
constexpr float* data() {
|
||||||
return elements;
|
return elements;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user