Closed Bug 721502 Opened 12 years ago Closed 12 years ago

HttpChannelParent.cpp:336:0: warning: ignoring #pragma warning [-Wunknown-pragmas]

Categories

(Core :: Networking, defect)

x86_64
Linux
defect
Not set
normal

Tracking

()

RESOLVED FIXED

People

(Reporter: dholbert, Assigned: mayhemer)

References

(Blocks 1 open bug)

Details

Filing bug on this warning:
HttpChannelParent.cpp:336:0: warning: ignoring #pragma warning  [-Wunknown-pragmas]

for this MSVC-specific line:
> 336 #pragma warning(disable : 4068)
http://mxr.mozilla.org/mozilla-central/source/netwerk/protocol/http/HttpChannelParent.cpp#336

The correct way to do this is demonstrated e.g. here in jsopcode.h:
> 286 #ifdef _MSC_VER
> 287 #pragma warning(push)
> 288 #pragma warning(disable:4100)
> 289 #endif
[...code that needs the warning disabled...]
> 436 #ifdef _MSC_VER
> 437 #pragma warning(pop)
> 438 #endif
http://mxr.mozilla.org/mozilla-central/source/js/src/jsopcode.h#288

That way, non-MSVC compilers don't see the pragma and won't complain about it.
Blocks: 621446
Assignee: nobody → honzab.moz
This bug has been fixed as a part of bug 621446. Patch file being
https://bug621446.bugzilla.mozilla.org/attachment.cgi?id=605532
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.