← Back to index
|
Original Bugzilla link
Bug 11089 – std.string.toUpper doesn't work with 1:m mappings
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
All
OS
All
Creation time
2013-09-21T14:07:00Z
Last change time
2013-10-15T12:43:59Z
Keywords
pull
Assigned to
nobody
Creator
dmitry.olsh
Comments
Comment #0
by dmitry.olsh — 2013-09-21T14:07:32Z
Test case (taht fails due to a bug in std.uni toUpper tables): void main(){ import std.string; assert("\u00df".toUpper == "SS"); }
Comment #1
by dmitry.olsh — 2013-09-21T14:29:30Z
https://github.com/D-Programming-Language/phobos/pull/1593
Comment #2
by github-bugzilla — 2013-09-26T07:27:20Z
Commit pushed to master at
https://github.com/D-Programming-Language/phobos
https://github.com/D-Programming-Language/phobos/commit/256b62b37089068f3594d60e2e4a739c66cae2cc
fix issue 11089 toUpper doesn't work with 1:m mappings Also fixes a typo in generic toCase, adds test cases for previously fixed issue 9629