diff options
author | LC <mathew1800@gmail.com> | 2020-11-27 17:44:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-27 17:44:07 -0500 |
commit | fca87cfa3e45675af62864c68a2907ca636fbecf (patch) | |
tree | eb3ff4a3dd862a50cc237664fcf54b54756ff740 /src | |
parent | 1dbe39f7a25357b40541ca536698cb09bb7df4ff (diff) | |
parent | 32f3b6b8658f8eff5e2d0eb312811207a0db0b9f (diff) |
Merge pull request #5014 from comex/xx-invalid-offsetof
CMakeLists: disable -Winvalid-offsetof
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index dbda528ce..a22b564d6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -66,6 +66,7 @@ else() -Wextra -Wmissing-declarations -Wno-attributes + -Wno-invalid-offsetof -Wno-unused-parameter ) |