mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-12705 disable opt on vs2015
workaround for failure on 32 bit release with vs2015update3 X-SVN-Rev: 39224
This commit is contained in:
parent
6fa604826e
commit
de23e2458b
1 changed files with 11 additions and 0 deletions
|
@ -19,6 +19,17 @@
|
|||
#include "ulocimp.h"
|
||||
#include "uassert.h"
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Ticket #12705 - VS2015 update 3, 32 bit release mode casues this file to have failures.
|
||||
* As a workaround, we will turn off optimization just for this file.
|
||||
*/
|
||||
#if (defined(_MSC_VER) && (_MSC_VER >= 1900))
|
||||
# pragma optimize("", off)
|
||||
#endif
|
||||
|
||||
|
||||
/* struct holding a single variant */
|
||||
typedef struct VariantListEntry {
|
||||
const char *variant;
|
||||
|
|
Loading…
Add table
Reference in a new issue