X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/9d88c94317aeac5dd26c1dbe8c2112dbe855d2b5..73c04bcfe1096173b00431f0cdc742894b15eef0:/icuSources/tools/genpname/genpname.cpp diff --git a/icuSources/tools/genpname/genpname.cpp b/icuSources/tools/genpname/genpname.cpp index b2df4d5c..bfaeac01 100644 --- a/icuSources/tools/genpname/genpname.cpp +++ b/icuSources/tools/genpname/genpname.cpp @@ -1,6 +1,6 @@ /* ********************************************************************** -* Copyright (C) 2002-2004, International Business Machines +* Copyright (C) 2002-2006, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * Date Name Description @@ -162,10 +162,13 @@ void die(const char* msg) { */ class AliasList { public: + virtual ~AliasList(); virtual const Alias& operator[](int32_t i) const = 0; virtual int32_t count() const = 0; }; +AliasList::~AliasList() {} + /** * A single array. */