Skip to content

Commit

Permalink
fixAfter #3014
Browse files Browse the repository at this point in the history
  • Loading branch information
9il committed Apr 8, 2015
1 parent e5f9e07 commit 5bbceb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/math.d
Expand Up @@ -1453,10 +1453,10 @@ unittest
long rndtol(real x) @nogc @safe pure nothrow; /* intrinsic */
//FIXME
///ditto
double rndtol(double x) @safe pure nothrow @nogc { return rndtol(cast(real)x); }
long rndtol(double x) @safe pure nothrow @nogc { return rndtol(cast(real)x); }
//FIXME
///ditto
float rndtol(float x) @safe pure nothrow @nogc { return rndtol(cast(real)x); }
long rndtol(float x) @safe pure nothrow @nogc { return rndtol(cast(real)x); }


/*****************************************
Expand Down

0 comments on commit 5bbceb4

Please sign in to comment.