From: Jeff Genovy <29107334+jefgen@users.noreply.github.com> Date: Wed, 4 Oct 2017 17:13:04 +0000 (+0000) Subject: ICU-13383 One more C4251 warning on MSVC. X-Git-Tag: release-60-rc~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62acf2ae94618d44a0e8c68dbc9a8b92347f3ddd;p=icu ICU-13383 One more C4251 warning on MSVC. X-SVN-Rev: 40546 --- diff --git a/icu4c/source/i18n/number_patternstring.h b/icu4c/source/i18n/number_patternstring.h index 19b41251977..b47de4f964d 100644 --- a/icu4c/source/i18n/number_patternstring.h +++ b/icu4c/source/i18n/number_patternstring.h @@ -20,7 +20,8 @@ namespace impl { // Forward declaration class PatternParser; -struct Endpoints { +// Exported as U_I18N_API because it is a public member field of exported ParsedSubpatternInfo +struct U_I18N_API Endpoints { int32_t start = 0; int32_t end = 0; };