Commit 939e0c7523bb7c260795c156e6b9948881a2d779

henry 2002-12-17T01:44:13

Removed operator +

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;