Uh oh!
There was an error while loading. Please reload this page.
tools: add "icu::" namespace to ICU symbols - #18667
Merged
Merged
Conversation
srl295
commented
Feb 9, 2018
MemberAuthor
ICU 61.0 (in progress) works unmodified with this change. |
BridgeAR
approved these changes
Feb 9, 2018
TimothyGu
left a comment
Member
There was a problem hiding this comment.
The commit message needs to be revised. Otherwise LGTM.
bnoordhuis
approved these changes
Feb 9, 2018
Member
There was a problem hiding this comment.
Long line, can you wrap this at 80 columns?
srl295
commented
Feb 9, 2018
MemberAuthor
@bnoordhuis wrapped. @TimothyGu yeah, scope changed as i was fixing it. Do you have a recommendation? |
TimothyGu
commented
Feb 9, 2018
Member
@srl295 Oh oops I meant the PR title. The commit message is already correct. |
srl295
commented
Feb 10, 2018
MemberAuthor
MemberAuthor
@ilovezfs ^ label added as note to self… |
ilovezfs
commented
Mar 28, 2018
Thanks @srl295! |
srl295 added a commit
to srl295/node
that referenced
this pull request
Apr 3, 2018
- Update to released ICU 61.1, including: - CLDR 33 (many new languages and data improvements) - Many small API additions, improvements, and bug fixes - note: 'icu::' namespace is no longer used by default (Necessated nodejs#18667 ) PR-URL: nodejs#19621 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
targos pushed a commit
that referenced
this pull request
Apr 3, 2018
- Update to released ICU 61.1, including: - CLDR 33 (many new languages and data improvements) - Many small API additions, improvements, and bug fixes - note: 'icu::' namespace is no longer used by default (Necessated #18667 ) PR-URL: #19621 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
kfarnung added a commit
to kfarnung/ChakraCore
that referenced
this pull request
Apr 9, 2018
ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460
kfarnung added a commit
to kfarnung/node-chakracore
that referenced
this pull request
Apr 9, 2018
ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460
chakrabot pushed a commit
to chakra-core/ChakraCore
that referenced
this pull request
Apr 9, 2018
Merge pull request #4952 from kfarnung:icu61 ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460
chakrabot pushed a commit
to nodejs/node-chakracore
that referenced
this pull request
Apr 9, 2018
[MERGE #4952 @kfarnung] Set `U_USING_ICU_NAMESPACE` to 0 by default Merge pull request #4952 from kfarnung:icu61 ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460 Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
chakrabot pushed a commit
to chakra-core/ChakraCore
that referenced
this pull request
Apr 9, 2018
… by default Merge pull request #4952 from kfarnung:icu61 ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460
chakrabot pushed a commit
to nodejs/node-chakracore
that referenced
this pull request
Apr 9, 2018
[1.9>master] [MERGE #4952 @kfarnung] Set `U_USING_ICU_NAMESPACE` to 0 by default Merge pull request #4952 from kfarnung:icu61 ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460 Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
kfarnung added a commit
to nodejs/node-chakracore
that referenced
this pull request
Apr 10, 2018
[MERGE #4952 @kfarnung] Set `U_USING_ICU_NAMESPACE` to 0 by default Merge pull request #4952 from kfarnung:icu61 ICU61 updated the value of `U_USING_ICU_NAMESPACE` to 0 by default. In order to maintain compatibility this change updates our ICU includes to match and adds the `icu::` namespace explicitly when needed. Refs: nodejs/node#18667 Refs: https://ssl.icu-project.org/trac/ticket/13460 Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
ArchangeGabriel
commented
Jun 14, 2018
What is the status for the v8.x backport? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In ICU 61.x, icu4c will no longer put its declarations in the global namespace.
Everything will be in the "icu::" namespace (or icu_60:: in the linker).
Prepare for this.
Upstream: https://ssl.icu-project.org/trac/ticket/13460
make -j4 test(UNIX), orvcbuild test(Windows) passesAffected core subsystem(s)
tools