removed friend declaration in rectangle class; obsolete, whole class is public
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 8 Dec 2011 08:17:24 +0000 (09:17 +0100)
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 8 Dec 2011 11:04:23 +0000 (12:04 +0100)
LayerManagerService/include/Rectangle.h

index 030de60..359f4dd 100644 (file)
@@ -50,8 +50,6 @@ public:
     {
         return (x == rhs.x && y == rhs.y && width == rhs.width && height == rhs.height);
     }
-
-    friend std::ostream& operator<<(std::ostream& stream, const Rectangle& obj);
 };
 
 #endif /* _RECTANGLE_H_ */