Changeset 31861 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Apr 14, 2008, 8:25:05 AM (17 years ago)
Author:
Adam Roben
Message:

Windows build fix

Rubberstamped by Alexey Proskuryakov.

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Disable the "potentially uninitialized variable" warning for grammar.cpp, as it seems to be incorrect. yylval gets initialized by the lexer, but MSVC doesn't seem to understand this.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r31824 r31861  
     12008-04-14  Adam Roben  <[email protected]>
     2
     3        Windows build fix
     4
     5        Rubberstamped by Alexey Proskuryakov.
     6
     7        * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Disable
     8        the "potentially uninitialized variable" warning for grammar.cpp, as
     9        it seems to be incorrect. yylval gets initialized by the lexer, but
     10        MSVC doesn't seem to understand this.
     11
    1122008-04-11  Antti Koivisto  <[email protected]>
    213
  • trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj

    r31404 r31861  
    680680                                        >
    681681                                        <FileConfiguration
     682                                                Name="Debug|Win32"
     683                                                >
     684                                                <Tool
     685                                                        Name="VCCLCompilerTool"
     686                                                        DisableSpecificWarnings="4701"
     687                                                />
     688                                        </FileConfiguration>
     689                                        <FileConfiguration
     690                                                Name="Release|Win32"
     691                                                >
     692                                                <Tool
     693                                                        Name="VCCLCompilerTool"
     694                                                        DisableSpecificWarnings="4701"
     695                                                />
     696                                        </FileConfiguration>
     697                                        <FileConfiguration
     698                                                Name="Debug_Internal|Win32"
     699                                                >
     700                                                <Tool
     701                                                        Name="VCCLCompilerTool"
     702                                                        DisableSpecificWarnings="4701"
     703                                                />
     704                                        </FileConfiguration>
     705                                        <FileConfiguration
    682706                                                Name="Release_PGO|Win32"
    683707                                                >
     
    685709                                                        Name="VCCLCompilerTool"
    686710                                                        WholeProgramOptimization="false"
     711                                                        DisableSpecificWarnings="4701"
    687712                                                />
    688713                                        </FileConfiguration>
Note: See TracChangeset for help on using the changeset viewer.