X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/73c04bcfe1096173b00431f0cdc742894b15eef0..4f1e1a09ce4daed860e35d359ce2fceccb0764e8:/icuSources/common/ustack.cpp?ds=inline diff --git a/icuSources/common/ustack.cpp b/icuSources/common/ustack.cpp index 76118bce..fb314b0e 100644 --- a/icuSources/common/ustack.cpp +++ b/icuSources/common/ustack.cpp @@ -1,6 +1,8 @@ +// © 2016 and later: Unicode, Inc. and others. +// License & terms of use: http://www.unicode.org/copyright.html /* ********************************************************************** -* Copyright (C) 2003-2004, International Business Machines +* Copyright (C) 2003-2011, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** */ @@ -21,12 +23,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) { }