Removed redundant () in preprocess
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)
{