ICU-12766 z/OS (and AIX) need U_FINAL still instead of final.

X-SVN-Rev: 39753
This commit is contained in:
Steven R. Loomis 2017-03-10 00:20:36 +00:00
parent 0605a3c20f
commit 09d1e6e03b
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ class Edits;
*
* @draft ICU 59
*/
class U_COMMON_API CaseMap final : public UMemory {
class U_COMMON_API CaseMap U_FINAL : public UMemory {
public:
/**
* Lowercases a UTF-16 string and optionally records edits.

View file

@ -29,7 +29,7 @@ U_NAMESPACE_BEGIN
*
* @draft ICU 59
*/
class U_COMMON_API Edits final : public UMemory {
class U_COMMON_API Edits U_FINAL : public UMemory {
public:
/**
* Constructs an empty object.
@ -89,7 +89,7 @@ public:
* @see getFineIterator
* @draft ICU 59
*/
struct U_COMMON_API Iterator final : public UMemory {
struct U_COMMON_API Iterator U_FINAL : public UMemory {
/**
* Copy constructor.
* @draft ICU 59