freebsd-ports/graphics/gltt/files/patch-FTGlyphVectorizer.h
Mario Sergio Fujikawa Ferreira 845e466716 Fix build with gcc 3.x: friend class declarations are more strict
friend A; -> friend class A;

Prompted by:	bento,
		kris
2003-06-10 16:45:05 +00:00

11 lines
272 B
C++

--- FTGlyphVectorizer.h.orig Tue Jun 10 13:41:02 2003
+++ FTGlyphVectorizer.h Tue Jun 10 13:41:07 2003
@@ -76,7 +76,7 @@
private:
void add_point( double x, double y );
- friend FTGlyphVectorizer;
+ friend class FTGlyphVectorizer;
};
protected: