Changeset 122033 in webkit


Ignore:
Timestamp:
Jul 6, 2012 1:41:09 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Build Error on Qt Linux build
https://bugs.webkit.org/show_bug.cgi?id=90699

Patch by Pravin D <pravind.2k4@gmail.com> on 2012-07-06
Reviewed by Laszlo Gombos.

  • parser/Parser.cpp:

(JSC::::parseForStatement):
Removed unused boolean variable as this was causing build error on Qt Linux.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r121986 r122033  
     12012-07-06  Pravin D  <pravind.2k4@gmail.com>
     2
     3        Build Error on Qt Linux build
     4        https://bugs.webkit.org/show_bug.cgi?id=90699
     5
     6        Reviewed by Laszlo Gombos.
     7
     8        * parser/Parser.cpp:
     9        (JSC::::parseForStatement):
     10        Removed unused boolean variable as this was causing build error on Qt Linux.
     11
    1122012-07-06  Nuno Lopes  <nlopes@apple.com>
    213
  • trunk/Source/JavaScriptCore/parser/Parser.cpp

    r121986 r122033  
    314314    int declsEnd = 0;
    315315    TreeExpression decls = 0;
    316     bool hasDeclaration = false;
    317316    if (match(VAR)) {
    318317        /*
     
    321320         for (var varDeclarationList; expressionOpt; expressionOpt)
    322321         */
    323         hasDeclaration = true;
    324322        const Identifier* forInTarget = 0;
    325323        TreeExpression forInInitializer = 0;
Note: See TracChangeset for help on using the changeset viewer.