-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add optional -Werror flag #5
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
908771d
add optional -Werror flag
925861c
reproduce implicit conversion and throw
ba04b83
add checks for implicit conversion
f9b7a53
starting to set size limit
4a3f79a
assert specific error thrown
1c8c2bf
reset maxsize in tests
7d6c327
detangle DEBUG tests and enforce const max
0c6f3bc
short term fix to ensure roundtripping
344ad85
remove string arg function
1374863
update readme
88d2c16
remove string arg boolean function and update tests
daa89d1
handle flags per compiler
3d7e6ab
only need if for gnu
7412f05
see if including limits helps with errors
3e37ecc
include limits in decompress as well
9c0dd3c
try require instead of check
d5844e0
try to replicate leak without catch.hpp
804c5f7
remove compiler-specific set logic and properly handle exception to r…
1ca7f3f
properly end deflate
f6747c3
Merge branch 'master' into werror
238dba3
re-add tests
2026ac9
will add in a separate cleanup branch
99a1554
sync with master, keep werror flag for debug
11ec96f
add handy Dockerfile for local debugging
9cce0d9
turn werror on by default
4bd8899
add dockerignore file
81fb1ca
manage memory leak in decompress
e765e3d
add explicit make debug
a936540
remove deflateEnd during failed deflateInit
ccf354c
handle init errors
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks as if you grabbed the comments about
-D_GLIBCXX_USE_CXX11_ABI=0
without the actual flag being added to theCMAKE_CXX_FLAGS
? Best to pull that over too.