Avoid some -Wshadow warnings in gcc12 #141
Merged
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.
When I was compiling camp with gcc12, I get the several of the following types of errors:
I think that while this shouldn't be an actual problem, it is a valid warning. Changing the name of the parameter from
t
tott
avoids the shadowing.edit: I am aware that I should be using
target_include_directories
with theSYSTEM
specifier. I had made a mistake and didn't includeSYSTEM
, but I still think that this could be addressed incamp
.edit2: I figured out the build system is trying to compile the error.cpp file in camp. This is where the warning is coming up. I added the
-Wno-shadow
flag to thecamp
target, and this removes the warning. So there are workarounds.