We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f0520 commit 37a5192Copy full SHA for 37a5192
CMakeLists.txt
@@ -17,6 +17,10 @@ set(CMAKE_CXX_STANDARD 17)
17
set(CMAKE_CXX_STANDARD_REQUIRED ON)
18
set(CMAKE_CXX_EXTENSIONS OFF)
19
20
+# This warning has a false positive. See
21
+# <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108088>.
22
+add_compile_options(-Wno-error=free-nonheap-object)
23
+
24
# If we're building with clang, then use the libc++ version of the standard
25
# library instead of libstdc++. Better coverage of build configurations.
26
#
0 commit comments