We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed this warning with gcc 12.2.0:
ICECC[13224] 2024-03-18 14:34:38: argument -pedantic, forcing local preprocessing (try using -std=cXX instead of -std=gnuXX)
Indeed we have -Wpedantic BUT we also have -std=c++17.
-Wpedantic
-std=c++17
The check is implemented here:
icecream/client/arg.cpp
Lines 891 to 897 in 9d397ef
The standard variable is declared on top but never assigned:
standard
Line 319 in 9d397ef
Is remote preprocessing supposed to work as described in the warning message/comment? If yes and it was overlooked, I can send a PR.
The text was updated successfully, but these errors were encountered:
Process -std= flag to allow remote preprocessing
1f7d93c
Fixes icecc#630.
No branches or pull requests
I noticed this warning with gcc 12.2.0:
Indeed we have
-Wpedantic
BUT we also have-std=c++17
.The check is implemented here:
icecream/client/arg.cpp
Lines 891 to 897 in 9d397ef
The
standard
variable is declared on top but never assigned:icecream/client/arg.cpp
Line 319 in 9d397ef
Is remote preprocessing supposed to work as described in the warning message/comment? If yes and it was overlooked, I can send a PR.
The text was updated successfully, but these errors were encountered: