Changeset 74955 in webkit


Ignore:
Timestamp:
Jan 3, 2011 9:31:52 PM (13 years ago)
Author:
Darin Adler
Message:

Try to fix Leopard build.

  • history/HistoryItem.cpp: Use a consistent type, uint64_t, for the

size variable.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r74954 r74955  
    1 2011-01-01  Abhishek Arya  <inferno@chromium.org>
     12011-01-03  Darin Adler  <darin@apple.com>
     2
     3        Try to fix Leopard build.
     4
     5        * history/HistoryItem.cpp: Use a consistent type, uint64_t, for the
     6        size variable.
     7
     82011-01-03  Abhishek Arya  <inferno@chromium.org>
    29
    310        Reviewed by Darin Adler.
  • trunk/WebCore/history/HistoryItem.cpp

    r74951 r74955  
    679679    RefPtr<HistoryItem> node;
    680680    size_t i;
    681     size_t size;
    682 
    683     DecodeRecursionStackElement(PassRefPtr<HistoryItem> node, size_t i, size_t size)
     681    uint64_t size;
     682
     683    DecodeRecursionStackElement(PassRefPtr<HistoryItem> node, size_t i, uint64_t size)
    684684        : node(node)
    685685        , i(i)
Note: See TracChangeset for help on using the changeset viewer.