Browse Source

Fixed GLM_FORCE_CXX** section in the manual

Christophe Riccio 7 years ago
parent
commit
cf6504b65e
3 changed files with 8 additions and 4 deletions
  1. 3 3
      glm/detail/setup.hpp
  2. 1 1
      manual.md
  3. 4 0
      readme.md

+ 3 - 3
glm/detail/setup.hpp

@@ -6,9 +6,9 @@
 #define GLM_VERSION_MAJOR			0
 #define GLM_VERSION_MINOR			9
 #define GLM_VERSION_PATCH			9
-#define GLM_VERSION_REVISION		1
-#define GLM_VERSION					991
-#define GLM_VERSION_MESSAGE			"GLM: version 0.9.9.1"
+#define GLM_VERSION_REVISION		2
+#define GLM_VERSION					992
+#define GLM_VERSION_MESSAGE			"GLM: version 0.9.9.2"
 
 #define GLM_SETUP_INCLUDED			GLM_VERSION
 

+ 1 - 1
manual.md

@@ -336,7 +336,7 @@ any inclusion of `<glm/glm.hpp>` to restrict the language feature set C++98:
 For C++11, C++14, and C++17 equivalent defines are available:
 * `GLM_FORCE_CXX11`
 * `GLM_FORCE_CXX14`
-* `GLM_FORCE_CXX14`
+* `GLM_FORCE_CXX17`
 
 ```cpp
 #define GLM_FORCE_CXX11

+ 4 - 0
readme.md

@@ -52,6 +52,10 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
 
 ## Release notes
 
+### [GLM 0.9.9.2](https://github.com/g-truc/glm/commits/master) - 2018-XX-XX
+#### Fixes:
+- Fixed GLM_FORCE_CXX** section in the manual
+
 ### [GLM 0.9.9.1](https://github.com/g-truc/glm/releases/tag/0.9.9.1) - 2018-09-03
 #### Features:
 - Added bitfieldDeinterleave to GTC_bitfield