Commit 5793be4198d9b357ba53b3982b37ed7ca8bd4a4c

henry 2002-12-19T10:22:49

Inlined some functions

diff --git a/include/FTContour.h b/include/FTContour.h
index fd936fe..895d9ed 100644
--- a/include/FTContour.h
+++ b/include/FTContour.h
@@ -59,19 +59,19 @@ class FTGL_EXPORT FTContour
          */
         inline void AddPoint( FTPoint point);
         
-        void AddPoint( float x, float y);
+        inline void AddPoint( float x, float y);
         
         /**
          * De Casteljau (bezier) algorithm contributed by Jed Soane
          * Evaluates a quadratic or conic (second degree) curve
          */
-        void evaluateQuadraticCurve();
+        inline void evaluateQuadraticCurve();
 
         /**
          * De Casteljau (bezier) algorithm contributed by Jed Soane
          * Evaluates a cubic (third degree) curve
          */
-        void evaluateCubicCurve();
+        inline void evaluateCubicCurve();
 
         /**
          *  The list of points in this contour