Changeset 94519 in webkit for trunk/Source/JavaScriptCore/wtf


Ignore:
Timestamp:
Sep 5, 2011, 1:49:57 AM (14 years ago)
Author:
[email protected]
Message:

[Qt][WK2] Fix the build

Rubber-stamped by Csaba Osztrogonác.

Source/JavaScriptCore:

  • wtf/dtoa/double-conversion.cc: Remove dead variable in file added in r94452.

The variable fractional_part is only set but never used.

Source/WebKit2:

  • DerivedSources.pro: Add missing PluginProcessConnection.messages.in after r94456.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/wtf/dtoa/double-conversion.cc

    r94452 r94519  
    607607        int insignificant_digits = 0;
    608608        bool nonzero_digit_dropped = false;
    609         bool fractional_part = false;
    610        
    611609        bool sign = false;
    612610       
     
    750748                }
    751749            }
    752            
    753             // We don't emit a '.', but adjust the exponent instead.
    754             fractional_part = true;
    755            
     750
    756751            // There is a fractional part.
    757752            while (*current >= '0' && *current <= '9') {
Note: See TracChangeset for help on using the changeset viewer.