Changeset 93328 in webkit


Ignore:
Timestamp:
Aug 18, 2011 11:51:41 AM (13 years ago)
Author:
thakis@chromium.org
Message:

Fix "missing return" gcc warning in ScrollAnimatorNone
https://bugs.webkit.org/show_bug.cgi?id=66480

Reviewed by Tony Chang.

  • platform/ScrollAnimatorNone.cpp:

(WebCore::ScrollAnimatorNone::PerAxisData::curveAt):
(WebCore::ScrollAnimatorNone::PerAxisData::curveDerivativeAt):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r93326 r93328  
     12011-08-18  Nico Weber  <thakis@chromium.org>
     2
     3        Fix "missing return" gcc warning in ScrollAnimatorNone
     4        https://bugs.webkit.org/show_bug.cgi?id=66480
     5
     6        Reviewed by Tony Chang.
     7
     8        * platform/ScrollAnimatorNone.cpp:
     9        (WebCore::ScrollAnimatorNone::PerAxisData::curveAt):
     10        (WebCore::ScrollAnimatorNone::PerAxisData::curveDerivativeAt):
     11
    1122011-08-18  James Simonsen  <simonjam@chromium.org>
    213
  • trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp

    r93262 r93328  
    9999        return 7.5625 * t * t + .984375;
    100100    }
     101    return 0;
    101102}
    102103
     
    127128        return t;
    128129    }
     130    return 0;
    129131}
    130132
Note: See TracChangeset for help on using the changeset viewer.