summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Glassey <wdg@debian.org>2018-11-01 13:32:33 +0700
committerDaniel Glassey <wdg@debian.org>2018-11-01 13:32:33 +0700
commitb78ffd33bf984615bf8076741e6e69e97448a3bc (patch)
tree3c904c1ec0ce346fb988a551c0baaa38069b23e2
parent7908826bcde7f60215bd8415f4602d697c13d9e1 (diff)
patch-04-pragmas
Remove the '#pragma's, they seem to cause problems for MSVC and are certainly not needed otherwise. Gbp-Pq: Name patch-04-pragmas
-rw-r--r--source/Engine.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/source/Engine.cpp b/source/Engine.cpp
index 8d050c1..dd47e54 100644
--- a/source/Engine.cpp
+++ b/source/Engine.cpp
@@ -102,10 +102,6 @@ READ(const UInt32 p)
#endif
}
-#ifndef __GNUC__
-#pragma mark --- class Stage ---
-#endif
-
Stage::Stage()
: oBuffer(0)
, oBufSize(0)
@@ -127,10 +123,6 @@ Stage::lookaheadCount() const
return 0;
}
-#ifndef __GNUC__
-#pragma mark --- class Normalizer ---
-#endif
-
#include "NormalizationData.c"
Normalizer::Normalizer(bool compose)
@@ -400,10 +392,6 @@ Normalizer::getChar()
return c;
}
-#ifndef __GNUC__
-#pragma mark --- class Pass ---
-#endif
-
Pass::Pass(const TableHeader* inTable, Converter* cnv)
: converter(cnv)
, tableHeader(inTable)
@@ -1288,10 +1276,6 @@ if (traceLevel > 0)
return 0;
}
-#ifndef __GNUC__
-#pragma mark --- class Converter ---
-#endif
-
Converter::Converter(const Byte* inTable, UInt32 inTableSize, bool inForward,
UInt16 inForm, UInt16 outForm)
: table(0)
@@ -1942,10 +1926,6 @@ Converter::Validate(const Converter* cnv)
return true;
}
-#ifndef __GNUC__
-#pragma mark --- Public "C" API functions ---
-#endif
-
TECkit_Status
WINAPI
TECkit_CreateConverter(