Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
deps: backport ICU-21081 for ICU 67.x (constexpr)
- Backport of unicode-org/icu@715d254
- ICU bug: https://unicode-org.atlassian.net/browse/ICU-21081

PR-URL: #33337
Refs: https://github.com/unicode-org/icu/releases/tag/release-67-1
Reviewed-By: Steven R Loomis <srloomis@us.ibm.com>
  • Loading branch information
srl295 authored and targos committed May 23, 2020
1 parent 2d76ae7 commit 5c0232a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/icu-small/README-SMALL-ICU.txt
Expand Up @@ -3,6 +3,6 @@ Small ICU sources - auto generated by shrink-icu-src.py
This directory contains the ICU subset used by --with-intl=small-icu (the default)
It is a strict subset of ICU 67 source files with the following exception(s):
* deps/icu-small/source/data/in/icudt67l.dat : Reduced-size data file

* deps/icu-small/source/common/uassert.h : Manual backport of ICU-21081

To rebuild this directory, see ../../tools/icu/README.md
2 changes: 1 addition & 1 deletion deps/icu-small/source/common/uassert.h
Expand Up @@ -32,7 +32,7 @@
# include <assert.h>
# define U_ASSERT(exp) assert(exp)
#elif U_CPLUSPLUS_VERSION
# define U_ASSERT(exp) void()
# define U_ASSERT(exp) (void)0
#else
# define U_ASSERT(exp)
#endif
Expand Down

0 comments on commit 5c0232a

Please sign in to comment.