On Thu, 03 Mar 2011 07:41:49 -0500, Trass3r <[email protected]> wrote:
replace() doesn't work in CTFE anymore cause it was modified to be based
on Appender.
According to klickverbot, other phobos functions share that fate.
I think something should be done about this. Couldn't Appender be
implemented without using a pointer to a struct?
Yes, it is something I intend to do. I want to make an (un@safe) scoped
appender which does not use a pImpl, along with a safe appender which does
use pImpl.
It should be as easy as making the impl struct a public struct.
-Steve