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