-
Notifications
You must be signed in to change notification settings - Fork 444
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
Do not toggle BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP in CMakelists.txt #4181
Conversation
I could approve this, but would prefer if someone closer to the C++ implementation could do so. @ChrisDodd would you have any time to take a look? The changes are short, but not sure if thinking about the possible consequences of the change are. |
7f6b05d
to
8a26617
Compare
I do not know who is qualified to review these types of PR at this point. |
@vlstill Do you have some expertise in the files affected here such that you might be able to give this a thoughtful review? |
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.
Seems like these were all workarounds for some pretty old GCC bugs. Since the comment mentions GCC 4.8 and since this compiles and passes test with GCC 9.4 (which is almost the oldest supported) I guess it is safe to delete the workarounds now. As for the boost macro, that should be safe too, there should be no real conflict between the get
versions.
It would be nice to have at least basic unit test for get
though.
259910d
to
6d40afc
Compare
6d40afc
to
45194f8
Compare
Fixes #4147.