Skip to content

Commit

Permalink
deps: backport ICU-21081 for ICU 67.x (constexpr)
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 authored and targos committed May 14, 2020
1 parent b036e5a commit b9f833a
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 b9f833a

Please sign in to comment.