mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 17:01:16 +00:00
ICU-13835 Fixing C++17 compiler error.
X-SVN-Rev: 41523
This commit is contained in:
parent
1af5762873
commit
ba800ab7bd
1 changed files with 1 additions and 1 deletions
|
@ -420,7 +420,7 @@ UnicodeString skeleton::generate(const MacroProps& macros, UErrorCode& status) {
|
|||
}
|
||||
|
||||
MacroProps skeleton::parseSkeleton(const UnicodeString& skeletonString, UErrorCode& status) {
|
||||
if (U_FAILURE(status)) { return {}; }
|
||||
if (U_FAILURE(status)) { return MacroProps(); }
|
||||
|
||||
// Add a trailing whitespace to the end of the skeleton string to make code cleaner.
|
||||
UnicodeString tempSkeletonString(skeletonString);
|
||||
|
|
Loading…
Add table
Reference in a new issue