Skip to content

Commit 839e7a0

Browse files
committed
Common.cmake: suppress -Wlong-long completely
We really don't care - these warnings are just noise.
1 parent b49194a commit 839e7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ target_compile_options(${PROJECT_NAME} PRIVATE
2020
# practice it is usually supported even by ancient compilers with very limited C++11
2121
# support. And we already unconditionally require `uint64_t`, so it would be strange if
2222
# the compiler supported `uint64_t` and not `long long`.
23-
-Wno-error=long-long
23+
-Wno-long-long
2424

2525
# See <https://gcc.gnu.org/onlinedocs/gcc-13.3.0/gcc/Warning-Options.html#index-Wstrict-aliasing_003dn>:
2626
#

0 commit comments

Comments
 (0)