*work in progress*
[winnie] / src / geom.h
index c294b54..9c00b41 100644 (file)
@@ -6,10 +6,7 @@ struct Rect {
        int width, height;
 };
 
-// TODO probably need to implement something like this:
-/*
 Rect rect_union(const Rect &a, const Rect &b);
 Rect rect_intersection(const Rect &a, const Rect &b);
-*/
 
 #endif // GEOM_H_