Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
deps: backport ICU-21081 for ICU 67.x (constexpr)
  • Loading branch information
srl295 authored and targos committed May 14, 2020
commit b9f833a9c4a323f3e7b173e9014be0f731758ea7
2 changes: 1 addition & 1 deletion deps/icu-small/README-SMALL-ICU.txt
Original file line number Diff line number Diff line change
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
Comment thread
targos marked this conversation as resolved.
Outdated

* 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
Original file line number Diff line number Diff line change
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