DescriptionFix -Wmicrosoft-unqualified-friend warning.
The warning complains that StringThreadTest is declared in the global namespace,
but the friend line says `friend class StringThreadTest;` instead of
`friend class ::StringThreadTest`. MSVC doesn't require this ::, but gcc does
-- without it, the friend line declares a new class in the namespace containing
UnicodeString.
Since StringThreadTest was in test/threadtest which isn't built as part of
Chromium's build and which was removed in upstream ICU in ICU 37392, just
delete the friend line, it has no effect.
BUG=505296
R=jshin@chromium.org
Committed: https://chromium.googlesource.com/chromium/deps/icu/+/6b3ce817f8e828c3b7a577d2395f0882eb56ef18
Patch Set 1 #Patch Set 2 : . #Patch Set 3 : . #
Messages
Total messages: 5 (1 generated)
|