Skip to content
This repository has been archived by the owner on Sep 17, 2020. It is now read-only.

Commit

Permalink
Merge pull request #9 from denizzzka/build_fix
Browse files Browse the repository at this point in the history
fix building on the new compilers
  • Loading branch information
denizzzka committed Sep 16, 2015
2 parents 3cb3546 + d8648c8 commit 3d7feed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/pgator/db/pq/types/time.d
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ version(Have_Int64_TimeStamp)
void TMODULO(ref long t, ref long q, double u)
{
q = cast(long)(t / u);
if (q != 0) t -= q * u;
if (q != 0) t -= q * cast(long)u;
}
}
else
Expand Down

0 comments on commit 3d7feed

Please sign in to comment.