Skip to content

Commit

Permalink
Unreviewed build fix. rdar://122344819
Browse files Browse the repository at this point in the history
Source/WebCore/accessibility/isolatedtree/AXIsolatedTree.cpp:260:35: error: no matching member function for call to 'add'

Canonical link: https://commits.webkit.org/272448.524@safari-7618.1.15-branch
Identifier: 272448.520@safari-7618-branch
  • Loading branch information
rjepstein committed Feb 8, 2024
1 parent 57a1b3a commit b3f2293
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ RefPtr<AXIsolatedObject> AXIsolatedTree::objectForID(const AXID axID) const
}

template<typename U>
Vector<RefPtr<AXCoreObject>> AXIsolatedTree::objectsForIDs(const U& axIDs) const
Vector<RefPtr<AXCoreObject>> AXIsolatedTree::objectsForIDs(const U& axIDs)
{
AXTRACE("AXIsolatedTree::objectsForIDs"_s);
ASSERT(!isMainThread());
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/accessibility/isolatedtree/AXIsolatedTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class AXIsolatedTree : public ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr<AX
WEBCORE_EXPORT RefPtr<AXIsolatedObject> focusedNode();

RefPtr<AXIsolatedObject> objectForID(const AXID) const;
template<typename U> Vector<RefPtr<AXCoreObject>> objectsForIDs(const U&) const;
template<typename U> Vector<RefPtr<AXCoreObject>> objectsForIDs(const U&);

void generateSubtree(AccessibilityObject&);
void labelCreated(AccessibilityObject&);
Expand Down

0 comments on commit b3f2293

Please sign in to comment.