diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-08-04 16:12:43 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-08-04 16:12:43 (GMT) |
commit | 4cd461168ef6dbd799792b1893c41dccebae59f9 (patch) | |
tree | 92f5d7ec85fec4630734cba24ba71a345a8d0cf2 /config/cmake/HDFCompilerFlags.cmake | |
parent | 20d43f3dba00d248c63a6ee41c0b8aae1b1532a5 (diff) | |
download | hdf5-4cd461168ef6dbd799792b1893c41dccebae59f9.zip hdf5-4cd461168ef6dbd799792b1893c41dccebae59f9.tar.gz hdf5-4cd461168ef6dbd799792b1893c41dccebae59f9.tar.bz2 |
Fixed warning typo
Diffstat (limited to 'config/cmake/HDFCompilerFlags.cmake')
-rw-r--r-- | config/cmake/HDFCompilerFlags.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/cmake/HDFCompilerFlags.cmake b/config/cmake/HDFCompilerFlags.cmake index d658c48..aea417a 100644 --- a/config/cmake/HDFCompilerFlags.cmake +++ b/config/cmake/HDFCompilerFlags.cmake @@ -210,7 +210,7 @@ if (NOT MSVC AND CMAKE_COMPILER_IS_GNUCC) # Append more extra warning flags that only gcc 9.x+ know about if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 9.0) - set (H5_CFLAGS4 "${H5_CFLAGS4} Wattribute-alias=2 -Wmissing-profile") + set (H5_CFLAGS4 "${H5_CFLAGS4} -Wattribute-alias=2 -Wmissing-profile") endif () endif () |