[Webkit-unassigned] [Bug 75372] New: ListHashSetReverseIterator compilation error

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 29 15:38:34 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=75372

           Summary: ListHashSetReverseIterator compilation error
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Template Framework
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: wangxianzhu at chromium.org
                CC: hyatt at apple.com


Using ListHashSetReverseIterator causes the following compilation error:

third_party/WebKit/Source/JavaScriptCore/wtf/ListHashSet.h:319: error: 'WTF::ListHashSetConstIterator<ValueArg, inlineCapacity, HashArg>::ListHashSetConstIterator(const WTF::ListHashSet<Value, inlineCapacity, HashFunctions>*, WTF::ListHashSetNode<ValueArg, inlineCapacity>*) [with ValueArg = int, unsigned int inlineCapacity = 256u, HashArg = WTF::IntHash<unsigned int>]' is private
third_party/WebKit/Source/JavaScriptCore/wtf/ListHashSet.h:387: error: within this context

There is a typo in class ListHashSetReverseIterator:
        typedef ListHashSetConstIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;

Should be
        typedef ListHashSetConstReverseIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list