Commit 2e5ee54380924474e7fa2fdd05e3234268afb96e

henry 2003-01-16T00:23:30

Removed redundant () in preprocess

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/FTVectoriser.cpp b/src/FTVectoriser.cpp
index e376ba1..cca5c36 100644
--- a/src/FTVectoriser.cpp
+++ b/src/FTVectoriser.cpp
@@ -137,8 +137,7 @@ void FTVectoriser::ProcessContours()
     short startIndex = 0;
     short endIndex = 0;
     
-    typedef FTContour* FTContourP;
-    contourList = new FTContourP[ftContourCount];
+    contourList = new FTContour*[ftContourCount];
     
     for( short contourIndex = 0; contourIndex < ftContourCount; ++contourIndex)
     {