Removed operator +
diff --git a/include/FTBBox.h b/include/FTBBox.h
index ff2ba05..4c524b7 100755
--- a/include/FTBBox.h
+++ b/include/FTBBox.h
@@ -81,15 +81,6 @@ class FTGL_EXPORT FTBBox
return *this;
}
- /**
- * Operator + Adds two FTBBox's together
- *
- * @param a
- * @param b
- * @return
- */
- friend FTBBox operator + ( const FTBBox &a, const FTBBox &b);
-
FTBBox& operator += ( const FTBBox& bbox)
{
lowerX = bbox.lowerX < lowerX? bbox.lowerX: lowerX;