Tagged Questions

8
votes
14answers
950 views

Does “if ([bool] == true)” require one more step than “if ([bool])”?

This is a purely pedantic question, to sate my own curiosity. I tend to go with the latter option in the question (so: if (boolCheck) { ... }), while a coworker always writes the former (if …
4
votes
5answers
2k views

How to ignore gcc compiler pedantic errors in external library headers?

I recently added -pedantic and -pedantic-errors to my make gcc compile options to help cleanup my cross platform code. All was fine until it finds errors in external included header files. Is there a …
3
votes
5answers
448 views

Is there an equivalent to -pedantic for gcc when using Microsoft’s Visual C++ compiler?

I would like to have my warnings set to the highest level using Microsoft Visual C++ compiler. Similar to using -pedantic on gcc. What compiler switches do you use to have the most warnings enabled?
2
votes
7answers
639 views

C: how can I fix warnings like: “comparison between signed and unsigned”

I have been advised to use the following options with GCC, as it helps to avoid a lot of common errors. It turns on a bunch of warnings and -Werror turns them into errors. gcc -pedantic -W -Wall …
1
vote
2answers
72 views

How to deal with -Wconversion warnings from GCC?

I'm building my project with GCC's -Wconversion warning flag. (gcc (Debian 4.3.2-1.1) 4.3.2) on a 64bit GNU/Linux OS/Hardware. I'm finding it useful in identifying where I've mixed types or lost …
0
votes
1answer
163 views

GCC: Is it possible to disable the “comma at end of enumerator list” warning when using -pedantic?

Hello, I'm compiling C++ code and I'd like to enable the -pedantic option. I'm using GCC 4.0, running Xcode on Mac OS X Leopard. It is for example possible to allow variadic macros and the long long …