Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: source/i18n/unicode/fmtable.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/i18n/unicode/filteredbrk.h ('k') | source/i18n/unicode/gender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/i18n/unicode/fmtable.h
diff --git a/source/i18n/unicode/fmtable.h b/source/i18n/unicode/fmtable.h
index 5edf9175e10dbb046912bb8013f6009935f12f96..6cad276f42366cdab25960b8f074a034d7f4d1bb 100644
--- a/source/i18n/unicode/fmtable.h
+++ b/source/i18n/unicode/fmtable.h
@@ -1,6 +1,6 @@
/*
********************************************************************************
-* Copyright (C) 1997-2013, International Business Machines
+* Copyright (C) 1997-2014, International Business Machines
* Corporation and others. All Rights Reserved.
********************************************************************************
*
@@ -598,13 +598,12 @@ public:
*/
static UClassID U_EXPORT2 getStaticClassID();
-#ifndef U_HIDE_DRAFT_API
/**
* Convert the UFormattable to a Formattable. Internally, this is a reinterpret_cast.
* @param fmt a valid UFormattable
* @return the UFormattable as a Formattable object pointer. This is an alias to the original
* UFormattable, and so is only valid while the original argument remains in scope.
- * @draft ICU 52
+ * @stable ICU 52
*/
static inline Formattable *fromUFormattable(UFormattable *fmt);
@@ -613,7 +612,7 @@ public:
* @param fmt a valid UFormattable
* @return the UFormattable as a Formattable object pointer. This is an alias to the original
* UFormattable, and so is only valid while the original argument remains in scope.
- * @draft ICU 52
+ * @stable ICU 52
*/
static inline const Formattable *fromUFormattable(const UFormattable *fmt);
@@ -621,7 +620,7 @@ public:
* Convert this object pointer to a UFormattable.
* @return this object as a UFormattable pointer. This is an alias to this object,
* and so is only valid while this object remains in scope.
- * @draft ICU 52
+ * @stable ICU 52
*/
inline UFormattable *toUFormattable();
@@ -629,10 +628,9 @@ public:
* Convert this object pointer to a UFormattable.
* @return this object as a UFormattable pointer. This is an alias to this object,
* and so is only valid while this object remains in scope.
- * @draft ICU 52
+ * @stable ICU 52
*/
inline const UFormattable *toUFormattable() const;
-#endif /* U_HIDE_DRAFT_API */
#ifndef U_HIDE_DEPRECATED_API
/**
@@ -738,7 +736,6 @@ inline int32_t Formattable::getLong(UErrorCode* status) const {
}
#endif /* U_HIDE_DEPRECATED_API */
-#ifndef U_HIDE_DRAFT_API
inline UFormattable* Formattable::toUFormattable() {
return reinterpret_cast<UFormattable*>(this);
}
@@ -754,7 +751,6 @@ inline Formattable* Formattable::fromUFormattable(UFormattable *fmt) {
inline const Formattable* Formattable::fromUFormattable(const UFormattable *fmt) {
return reinterpret_cast<const Formattable *>(fmt);
}
-#endif /* U_HIDE_DRAFT_API */
U_NAMESPACE_END
« no previous file with comments | « source/i18n/unicode/filteredbrk.h ('k') | source/i18n/unicode/gender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698