X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/73c04bcfe1096173b00431f0cdc742894b15eef0..b801cf366c7671a99bdcef84d1e9c0ec64b36723:/icuSources/common/ustack.cpp diff --git a/icuSources/common/ustack.cpp b/icuSources/common/ustack.cpp index 76118bce..c58de7ba 100644 --- a/icuSources/common/ustack.cpp +++ b/icuSources/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) { }