Fixed merge

master
Christophe Riccio ago%!(EXTRA string=12 years)
commit 52d86dcc19
  1. 3
      readme.txt
  2. 3
      test/core/core_setup_message.cpp

@ -67,7 +67,7 @@ GLM 0.9.5.0: 2013-XX-XX
- Increased unit tests completness - Increased unit tests completness
================================================================================ ================================================================================
GLM 0.9.4.6: 2013-09-15 GLM 0.9.4.6: 2013-09-18
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
- Fixed detection to select the last known compiler if newer version #106 - Fixed detection to select the last known compiler if newer version #106
- Fixed is_int and is_uint code duplication with GCC and C++11 #107 - Fixed is_int and is_uint code duplication with GCC and C++11 #107
@ -79,6 +79,7 @@ GLM 0.9.4.6: 2013-09-15
for ICC for ICC
- Added compilation errors for unsupported compiler versions - Added compilation errors for unsupported compiler versions
- Fixed glm::orientation with GLM_FORCE_RADIANS defined #112 - Fixed glm::orientation with GLM_FORCE_RADIANS defined #112
- Fixed const ref issue on assignment operator taking a scalar parameter #116
================================================================================ ================================================================================
GLM 0.9.4.5: 2013-08-12 GLM 0.9.4.5: 2013-08-12

@ -36,6 +36,9 @@ int test_compiler()
case GLM_COMPILER_VC12: case GLM_COMPILER_VC12:
std::cout << "GLM_COMPILER_VC12" << std::endl; std::cout << "GLM_COMPILER_VC12" << std::endl;
break; break;
case GLM_COMPILER_VC2013:
std::cout << "GLM_COMPILER_VC2013" << std::endl;
break;
default: default:
std::cout << "Visual C++ version not detected" << std::endl; std::cout << "Visual C++ version not detected" << std::endl;
Error += 1; Error += 1;

Loading…
Cancel
Save