]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/csg.cpp
Callback: remove fixed-arity wrappers
[xonotic/netradiant.git] / radiant / csg.cpp
index cc5de460285bf609eb4a832c6ddc3b07c54a085e..2abfb1b36e9efdbeda1743585a872efc08ec83c7 100644 (file)
@@ -213,7 +213,7 @@ BindArguments2<Caller> bindArguments( const Caller& caller, FirstBound firstBoun
 inline bool Face_testPlane( const Face& face, const Plane3& plane, bool flipped ){
        return face.contributes() && !Winding_TestPlane( face.getWinding(), plane, flipped );
 }
-typedef Function3<const Face&, const Plane3&, bool, bool, Face_testPlane> FaceTestPlane;
+typedef Function<bool(const Face&, const Plane3&, bool), Face_testPlane> FaceTestPlane;