Changeset 74221 in webkit


Ignore:
Timestamp:
Dec 16, 2010 5:52:43 PM (13 years ago)
Author:
evan@chromium.org
Message:

2010-12-16 Evan Martin <evan@chromium.org>

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.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r74210 r74221  
     12010-12-16  Evan Martin  <evan@chromium.org>
     2
     3        Reviewed by Darin Fisher.
     4
     5        [chromium] useless warnings when building on Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=50985
     7
     8        Disable some compiler warnings that aren't indicative of real problems.
     9
     10        * JavaScriptCore.gyp/JavaScriptCore.gyp:
     11
    1122010-12-16  Pratik Solanki  <psolanki@apple.com>
    213
  • 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.