Commit a9f836b26bb665d20ba5a06539294d81033cb8c9

henry 2001-08-28T01:47:44

Removed redundant static_cast<float>()

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/FTVectoriser.cpp b/src/FTVectoriser.cpp
index 9577019..0dcf2f2 100644
--- a/src/FTVectoriser.cpp
+++ b/src/FTVectoriser.cpp
@@ -17,7 +17,7 @@ FTContour::~FTContour()
 
 void FTContour::AddPoint( const float x, const float y)
 {
-	ftPoint point( static_cast<float>( x), static_cast<float>( y), 0.0); 
+	ftPoint point( x, y, 0.0); 
 	
 	// Eliminate duplicate points.
 	if( ( pointList[pointList.size() - 1] != point) && pointList[0] != point)