mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 09:21:03 +00:00
ICU-13667 Moves digits_t, DEFAULT_THRESHOLD, and copyErrorTo() outside of U_HIDE_INTERNAL_API.
X-SVN-Rev: 41485
This commit is contained in:
parent
63d68a159c
commit
781154c113
1 changed files with 2 additions and 4 deletions
|
@ -108,7 +108,6 @@ class IntegerWidth;
|
|||
|
||||
namespace impl {
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
/**
|
||||
* Datatype for minimum/maximum fraction digits. Must be able to hold kMaxIntFracSig.
|
||||
*
|
||||
|
@ -123,7 +122,6 @@ typedef int16_t digits_t;
|
|||
* @internal
|
||||
*/
|
||||
static constexpr int32_t DEFAULT_THRESHOLD = 3;
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
// Forward declarations:
|
||||
class Padder;
|
||||
|
@ -1164,6 +1162,8 @@ class U_I18N_API SymbolsWrapper : public UMemory {
|
|||
*/
|
||||
const NumberingSystem *getNumberingSystem() const;
|
||||
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
/** @internal */
|
||||
UBool copyErrorTo(UErrorCode &status) const {
|
||||
if (fType == SYMPTR_DFS && fPtr.dfs == nullptr) {
|
||||
|
@ -1176,8 +1176,6 @@ class U_I18N_API SymbolsWrapper : public UMemory {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
#endif // U_HIDE_INTERNAL_API
|
||||
|
||||
private:
|
||||
enum SymbolsPointerType {
|
||||
SYMPTR_NONE, SYMPTR_DFS, SYMPTR_NS
|
||||
|
|
Loading…
Add table
Reference in a new issue