Changeset 76456 in webkit


Ignore:
Timestamp:
Jan 22, 2011 4:33:55 PM (13 years ago)
Author:
dbates@webkit.org
Message:

2011-01-22 Chris Rogers <crogers@google.com>

Rubber-stamped by Anders Carlsson.

Fix FFTFrameStub to compile properly
https://bugs.webkit.org/show_bug.cgi?id=52969

No new tests since this is a build fix.

  • platform/audio/FFTFrameStub.cpp: (WebCore::FFTFrame::FFTFrame):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r76448 r76456  
     12011-01-22  Chris Rogers  <crogers@google.com>
     2
     3        Rubber-stamped by Anders Carlsson.
     4
     5        Fix FFTFrameStub to compile properly
     6        https://bugs.webkit.org/show_bug.cgi?id=52969
     7
     8        No new tests since this is a build fix.
     9
     10        * platform/audio/FFTFrameStub.cpp:
     11        (WebCore::FFTFrame::FFTFrame):
     12
    1132011-01-22  Andrei Popescu  <andreip@google.com>
    214
  • trunk/Source/WebCore/platform/audio/FFTFrameStub.cpp

    r76397 r76456  
    3737
    3838// Normal constructor: allocates for a given fftSize.
    39 FFTFrame::FFTFrame(unsigned fftSize)
    40     : m_FFTSize(fftSize)
    41     , m_log2FFTSize(static_cast<unsigned>(log2(fftSize)))
     39FFTFrame::FFTFrame(unsigned /*fftSize*/)
     40    : m_FFTSize(0)
     41    , m_log2FFTSize(0)
    4242{
    4343    ASSERT_NOT_REACHED();
Note: See TracChangeset for help on using the changeset viewer.