X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Ficu%2Fsource%2Fcommon%2Fustack.cpp;h=c58de7ba1f53364b323394d7e572a6f3c0ba09fc;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=76118bce99a5272089994dcbb9e82d1706fd53be;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/icu/source/common/ustack.cpp b/src/third_party/icu/source/common/ustack.cpp index 76118bc..c58de7b 100644 --- a/src/third_party/icu/source/common/ustack.cpp +++ b/src/third_party/icu/source/common/ustack.cpp @@ -1,6 +1,6 @@ /* ********************************************************************** -* Copyright (C) 2003-2004, International Business Machines +* Copyright (C) 2003-2011, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** */ @@ -21,12 +21,12 @@ UStack::UStack(int32_t initialCapacity, UErrorCode &status) : { } -UStack::UStack(UObjectDeleter *d, UKeyComparator *c, UErrorCode &status) : +UStack::UStack(UObjectDeleter *d, UElementsAreEqual *c, UErrorCode &status) : UVector(d, c, status) { } -UStack::UStack(UObjectDeleter *d, UKeyComparator *c, int32_t initialCapacity, UErrorCode &status) : +UStack::UStack(UObjectDeleter *d, UElementsAreEqual *c, int32_t initialCapacity, UErrorCode &status) : UVector(d, c, initialCapacity, status) { }