Ignore:
Timestamp:
Dec 16, 2010, 5:52:43 PM (14 years ago)
Author:
[email protected]
Message:

2010-12-16 Evan Martin <[email protected]>

Reviewed by Darin Fisher.

[chromium] useless warnings when building on Windows
https://bugs.webkit.org/show_bug.cgi?id=50985

Disable some compiler warnings that aren't indicative of real problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp

    r63516 r74221  
    126126          '../wtf',
    127127        ],
     128        # Some warnings occur in JSC headers, so they must also be disabled
     129        # in targets that use JSC.
     130        'msvs_disabled_warnings': [
     131          # Don't complain about calling specific versions of templatized
     132          # functions (e.g. in RefPtrHashMap.h).
     133          4344,
     134          # Don't complain about using "this" in an initializer list
     135          # (e.g. in StringImpl.h).
     136          4355,
     137        ],
    128138      },
    129139      'export_dependent_settings': [
Note: See TracChangeset for help on using the changeset viewer.