Actions
Bug #2261
closedIssue #2259
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Description
Dear DragonFlyBSD bugs,
With regard to Issue #2259, I have discovered the problem only manifests
with the use of the
g++ compiler on "leaf.dragonflybsd.org".
For example, using the file: "/home/rcarey/test.c" on host "
leaf.dragonflybsd.org":
gcc -Wall test.c (produces a clean compile)
But trying:
g++ -Wall test.c (produces the warning about
signed and unsigned comparison).
Hope this helps (I'm trying not to make too much noise !).
--
Sincerely,
Robin Carey BSc
Updated by swildner almost 13 years ago
The warning does not seem to be part of -Wall in gcc, while it is part of -Wall in g++.
For gcc, you need -W (i.e., -Wextra) to see it.
Actions