Fix typo - had "#define XPOINT XPoint;", and had to remove the trailing

semicolon...


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3786 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2004-08-26 18:24:11 +00:00
parent 329f84671e
commit 157bf81506
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: fl_vertex.cxx,v 1.5.2.3.2.10 2004/08/26 00:18:43 matthiaswm Exp $" // "$Id: fl_vertex.cxx,v 1.5.2.3.2.11 2004/08/26 18:24:11 easysw Exp $"
// //
// Portable drawing routines for the Fast Light Tool Kit (FLTK). // Portable drawing routines for the Fast Light Tool Kit (FLTK).
// //
@@ -85,7 +85,7 @@ typedef struct { float x; float y; } QPoint;
# define XPOINT QPoint # define XPOINT QPoint
#else #else
typedef short COORD_T; typedef short COORD_T;
#define XPOINT XPoint; # define XPOINT XPoint
#endif #endif
static XPOINT *p = (XPOINT *)0; static XPOINT *p = (XPOINT *)0;
@@ -305,5 +305,5 @@ void fl_circle(double x, double y,double r) {
} }
// //
// End of "$Id: fl_vertex.cxx,v 1.5.2.3.2.10 2004/08/26 00:18:43 matthiaswm Exp $". // End of "$Id: fl_vertex.cxx,v 1.5.2.3.2.11 2004/08/26 18:24:11 easysw Exp $".
// //