Added dualquat trivially copyable test. #263

master
Christophe Riccio ago%!(EXTRA string=11 years)
parent 16a0c960f7
commit 191dbe92dc
  1. 22
      test/gtx/gtx_dual_quaternion.cpp

@ -160,10 +160,32 @@ int test_mul()
return Error;
}
int test_dual_quat_ctr()
{
int Error(0);
#if (GLM_LANG & GLM_LANG_CXX11_FLAG) || (GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12)
// Error += std::is_trivially_default_constructible<glm::dualquat>::value ? 0 : 1;
// Error += std::is_trivially_default_constructible<glm::ddualquat>::value ? 0 : 1;
// Error += std::is_trivially_copy_assignable<glm::dualquat>::value ? 0 : 1;
// Error += std::is_trivially_copy_assignable<glm::ddualquat>::value ? 0 : 1;
Error += std::is_trivially_copyable<glm::dualquat>::value ? 0 : 1;
Error += std::is_trivially_copyable<glm::ddualquat>::value ? 0 : 1;
Error += std::has_trivial_copy_constructor<glm::dualquat>::value ? 0 : 1;
Error += std::has_trivial_copy_constructor<glm::ddualquat>::value ? 0 : 1;
Error += std::is_copy_constructible<glm::dualquat>::value ? 0 : 1;
Error += std::is_copy_constructible<glm::ddualquat>::value ? 0 : 1;
#endif
return Error;
}
int main()
{
int Error(0);
Error += test_dual_quat_ctr();
Error += test_dquat_type();
Error += test_scalars();
Error += test_inverse();

Loading…
Cancel
Save