Skip to content

Commit

Permalink
Revert "Fixed C++ language auto detection build, disable C++98 warnin…
Browse files Browse the repository at this point in the history
…gs with Clang g-truc#1235, g-truc#1231"

This reverts commit 6cbb851.
  • Loading branch information
Zuzu-Typ authored Oct 11, 2024
1 parent 73b42b8 commit 068b6b0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
11 changes: 0 additions & 11 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,6 @@ elseif(GLM_ENABLE_CXX_98)
if(NOT GLM_QUIET)
message(STATUS "GLM: Build with C++98 features")
endif()

else()
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
message(STATUS "GLM: Disable -Wc++98-compat warnings")
add_compile_options(-Wno-c++98-compat)
add_compile_options(-Wno-c++98-compat-pedantic)
endif()
if(NOT GLM_QUIET)
message(STATUS "GLM: Build with C++ features auto detection")
endif()

endif()

option(GLM_ENABLE_LANG_EXTENSIONS "Enable language extensions" OFF)
Expand Down
5 changes: 0 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,6 @@ target_link_libraries(main PRIVATE glm::glm)

## Release notes

### [GLM 1.0.1](https://github.com/g-truc/glm) - 2024-XX-XX

#### Fixes:
- Fixed C++ language auto detection build, disable C++98 warnings with Clang #1235, #1231

### [GLM 1.0.0](https://github.com/g-truc/glm/releases/tag/1.0.0) - 2024-01-24
#### Features:
- Added *GLM_EXT_scalar_reciprocal* with tests
Expand Down

0 comments on commit 068b6b0

Please sign in to comment.