Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
remove __ctfeWriteln
Browse files Browse the repository at this point in the history
- just append a newline before the call, or format the string
  • Loading branch information
MartinNowak committed Oct 28, 2016
1 parent 515dc20 commit b706631
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/object.d
Expand Up @@ -3186,12 +3186,8 @@ bool _xopCmp(in void*, in void*)
{
throw new Error("TypeInfo.compare is not implemented");
}

void __ctfeWrite(const string s) @nogc @safe pure nothrow {}
void __ctfeWriteln(const string s) @nogc @safe pure nothrow
{
__ctfeWrite(s);
__ctfeWrite("\n");
}

/******************************************
* Create RTInfo for type T
Expand Down

0 comments on commit b706631

Please sign in to comment.