mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
parent
78c3e1ed6d
commit
0ba723ded2
1 changed files with 23 additions and 19 deletions
|
@ -20,22 +20,6 @@ class LongNameHandler;
|
|||
}
|
||||
} // namespace number
|
||||
|
||||
// Export an explicit template instantiation of the LocalPointer that is used as a
|
||||
// data member of MeasureUnitImpl.
|
||||
// (When building DLLs for Windows this is required.)
|
||||
#if U_PF_WINDOWS <= U_PLATFORM && U_PLATFORM <= U_PF_CYGWIN
|
||||
#if defined(_MSC_VER)
|
||||
// Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable : 4661)
|
||||
#endif
|
||||
template class U_I18N_API LocalPointerBase<MeasureUnitImpl>;
|
||||
template class U_I18N_API LocalPointer<MeasureUnitImpl>;
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static const char16_t kDefaultCurrency[] = u"XXX";
|
||||
static const char kDefaultCurrency8[] = "XXX";
|
||||
|
||||
|
@ -194,9 +178,6 @@ struct MeasureUnitImplWithIndex;
|
|||
template class U_I18N_API MaybeStackArray<SingleUnitImpl *, 8>;
|
||||
template class U_I18N_API MemoryPool<SingleUnitImpl, 8>;
|
||||
template class U_I18N_API MaybeStackVector<SingleUnitImpl, 8>;
|
||||
template class U_I18N_API MaybeStackArray<MeasureUnitImplWithIndex *, 8>;
|
||||
template class U_I18N_API MemoryPool<MeasureUnitImplWithIndex, 8>;
|
||||
template class U_I18N_API MaybeStackVector<MeasureUnitImplWithIndex, 8>;
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -330,6 +311,29 @@ struct U_I18N_API MeasureUnitImplWithIndex : public UMemory {
|
|||
}
|
||||
};
|
||||
|
||||
// Export explicit template instantiations of MaybeStackArray, MemoryPool and
|
||||
// MaybeStackVector. This is required when building DLLs for Windows. (See
|
||||
// datefmt.h, collationiterator.h, erarules.h and others for similar examples.)
|
||||
#if U_PF_WINDOWS <= U_PLATFORM && U_PLATFORM <= U_PF_CYGWIN
|
||||
template class U_I18N_API MaybeStackArray<MeasureUnitImplWithIndex *, 8>;
|
||||
template class U_I18N_API MemoryPool<MeasureUnitImplWithIndex, 8>;
|
||||
template class U_I18N_API MaybeStackVector<MeasureUnitImplWithIndex, 8>;
|
||||
|
||||
// Export an explicit template instantiation of the LocalPointer that is used as a
|
||||
// data member of MeasureUnitImpl.
|
||||
// (When building DLLs for Windows this is required.)
|
||||
#if defined(_MSC_VER)
|
||||
// Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable : 4661)
|
||||
#endif
|
||||
template class U_I18N_API LocalPointerBase<MeasureUnitImpl>;
|
||||
template class U_I18N_API LocalPointer<MeasureUnitImpl>;
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
U_NAMESPACE_END
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
|
|
Loading…
Add table
Reference in a new issue