Bug 1720 – std.math.NotImplemented missing a space in message

Status
RESOLVED
Resolution
FIXED
Severity
trivial
Priority
P2
Component
phobos
Product
D
Version
D1 (retired)
Platform
x86
OS
Windows
Creation time
2007-12-09T13:42:00Z
Last change time
2014-02-24T16:00:00Z
Assigned to
bugzilla
Creator
wbaxter

Comments

Comment #0 by wbaxter — 2007-12-09T13:42:12Z
class NotImplemented : Error { this(string msg) { super(msg ~ "not implemented"); // should be //super(msg ~ " not implemented"); } } Currently the message printed out is something like: Error: nextafternot implemented
Comment #1 by wbaxter — 2007-12-09T13:44:33Z
True for both D1 and D2 versions of the file.
Comment #2 by braddr — 2007-12-09T15:23:14Z
Fix checked in to both 1.x and 2.x branches.