summaryrefslogtreecommitdiff
path: root/graphics/asymptote/mod.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/mod.h')
-rw-r--r--graphics/asymptote/mod.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/asymptote/mod.h b/graphics/asymptote/mod.h
index 89d017c6ce..b441d08b7c 100644
--- a/graphics/asymptote/mod.h
+++ b/graphics/asymptote/mod.h
@@ -16,8 +16,8 @@ using std::fmod;
inline Int Mod(Int x, Int y) {return x % y;}
inline double Mod(double x, double y) {return fmod(x,y);}
-
-template<typename T>
+
+template<typename T>
inline T portableMod(T x,T y)
{
// Implementation-independent definition of mod; ensure that result has
@@ -26,7 +26,7 @@ inline T portableMod(T x,T y)
if((y > 0 && val < 0) || (y < 0 && val > 0)) val += y;
return val;
}
-
+
inline Int imod(Int x, Int y)
{
return portableMod<Int>(x,y);