-
Notifications
You must be signed in to change notification settings - Fork 5k
Make use of stdbool.h #47346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
Tagging subscribers to this area: @tarekgh, @safern, @krwq Issue DetailsThe recent version (v68) of
Also see this changeset: unicode-org/icu@c3fe7e0#diff-5e55234a9864fa25c27093e7e3e3542e2ae3a4976dba37ff6ca65e8293656fab This causes compilation errors in our globalization pal, eg.:
This will cause issue only on distros with We should update our globalization pal to make use of standard
|
Looks like |
You could probably just try it @ManickaP if you feel like it, since you have the repro case 😄 |
This is also an issue of upper-case |
I know this is closed however, a workaround for those experiencing this while trying to build release/5.0 and unable to rollback to v67 of
at the end of your |
Will this be ported to |
My suggestion is to offer a patch file or instructions for those folks - unless it impacts our own builds. There is always risk in modifying code (and build process) that is in servicing. |
The recent version (v68) of
libicu
deprecates its defined boolean constants forTRUE/FALSE
: https://github.com/unicode-org/icu/blob/master/docs/userguide/dev/codingguidelines.md#primitive-typesAlso see this changeset: unicode-org/icu@c3fe7e0#diff-5e55234a9864fa25c27093e7e3e3542e2ae3a4976dba37ff6ca65e8293656fab
This causes compilation errors in our globalization pal, eg.:
This will cause issue only on distros with
libicu
86 and higher, e.g.: current Manjaro 20.2.1 Nibia.We should update our globalization pal to make use of standard
<stdbool.h>
andtrue/false
.The text was updated successfully, but these errors were encountered: