]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/ustack.cpp
ICU-62123.0.1.tar.gz
[apple/icu.git] / icuSources / common / ustack.cpp
index 76118bce99a5272089994dcbb9e82d1706fd53be..fb314b0ebe54cd61845c22ad82db1f8f19ed4372 100644 (file)
@@ -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)
 {
 }