We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If constructors and assignment operator are defined as default:
GLM_FUNC_DECL tvec2() = default; GLM_FUNC_DECL tvec2(tvec2<T, P> const & v) = default; GLM_FUNC_DECL tvec2<T, P>& operator=(tvec2<T, P> const & v) = default;
then tvec2 can be used in unions. Implicitly-defined constructors provide no functionality but make the classes non-trivial.
The text was updated successfully, but these errors were encountered:
it's not a bad idea
Sorry, something went wrong.
I agree, I like it.
Added support of defaulted functions to *vec* types #366
f7751bf
Added support of defaulted functions to GLM types, to use them in uni…
a56a40e
…ons #366
This feature has been in master branch for GLM 0.9.7 release.
Thanks, Christophe
Fixed interactions with GLM_FORCE_NO_CTOR_INIT and default functions #…
afa1937
…366
Groovounet
No branches or pull requests
If constructors and assignment operator are defined as default:
then tvec2 can be used in unions. Implicitly-defined constructors provide no functionality but make the classes non-trivial.
The text was updated successfully, but these errors were encountered: