diff options
| author | Tilka <tilkax@gmail.com> | 2023-12-13 15:54:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-13 15:54:36 +0000 |
| commit | 2e558d87ef0cfbd185d2a850fec045aa99bf6253 (patch) | |
| tree | ad3e2e94c8355ad5bcbf75f89be2d12d3e243556 | |
| parent | df922afdbbd0cda452f9db0fbe826e8fd2030454 (diff) | |
| parent | e27a4b5d72cb114ebf17921bb5592aa8f9ba9760 (diff) | |
Merge pull request #12413 from lioncash/doc
Externals/mbedtls: Disable -Wdocumentation related warnings
| -rw-r--r-- | Externals/mbedtls/library/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Externals/mbedtls/library/CMakeLists.txt b/Externals/mbedtls/library/CMakeLists.txt index fc2786c7f2..5aa233e080 100644 --- a/Externals/mbedtls/library/CMakeLists.txt +++ b/Externals/mbedtls/library/CMakeLists.txt @@ -122,7 +122,7 @@ if(CMAKE_COMPILER_IS_GNUCC) endif(CMAKE_COMPILER_IS_GNUCC) if(CMAKE_COMPILER_IS_CLANG) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wdocumentation -Wno-documentation-deprecated-sync -Wunreachable-code") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wunreachable-code") endif(CMAKE_COMPILER_IS_CLANG) if(WIN32) |
