Changeset 33973 in webkit for trunk/JavaScriptCore/wtf/AVLTree.h


Ignore:
Timestamp:
May 21, 2008, 12:16:47 PM (17 years ago)
Author:
Darin Adler
Message:

2008-05-21 Darin Adler <Darin Adler>

  • try to fix the Windows build
  • profiler/Profiler.cpp: (KJS::Profiler::stopProfiling): Use ptrdiff_t instead of the less-common but incredibly similar ssize_t type.
  • wtf/AVLTree.h: (KJS::AVLTree::search): Added a typename for a dependent name that's a type.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/AVLTree.h

    r33967 r33973  
    685685template <class Abstractor, unsigned maxDepth, class BSet>
    686686inline typename AVLTree<Abstractor, maxDepth, BSet>::handle
    687 AVLTree<Abstractor, maxDepth, BSet>::search(key k, AVLTree<Abstractor, maxDepth, BSet>::SearchType st)
     687AVLTree<Abstractor, maxDepth, BSet>::search(key k, typename AVLTree<Abstractor, maxDepth, BSet>::SearchType st)
    688688{
    689689    const int MASK_HIGH_BIT = (int) ~ ((~ (unsigned) 0) >> 1);
Note: See TracChangeset for help on using the changeset viewer.