summaryrefslogtreecommitdiff
path: root/dmagick/Geometry.d
diff options
context:
space:
mode:
authorMike Wey2011-05-07 16:32:37 +0200
committerMike Wey2011-05-07 16:32:37 +0200
commit60f11f1fdd1e428f3e2203c2723cf7c7a282e561 (patch)
treeed8fed4c44941ef2d77c10500358530eb2488c77 /dmagick/Geometry.d
parent4c6d40489dc87932350b856891d0aa92e2ac18ad (diff)
Use a struct/struct destructors to wrap ImageMagick Exception handling.
Diffstat (limited to 'dmagick/Geometry.d')
-rw-r--r--dmagick/Geometry.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmagick/Geometry.d b/dmagick/Geometry.d
index 4466226..c093f91 100644
--- a/dmagick/Geometry.d
+++ b/dmagick/Geometry.d
@@ -132,7 +132,7 @@ struct Geometry
return info;
}
- int opCmp(ref const Geometry geometry)
+ size_t opCmp(ref const Geometry geometry)
{
return width*height - geometry.width*geometry.height;
}