diff options
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/libs/teckit/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/libs/teckit/source/Compiler.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/libs/teckit/ChangeLog b/Build/source/libs/teckit/ChangeLog index b733c2c16d8..f714ced14d7 100644 --- a/Build/source/libs/teckit/ChangeLog +++ b/Build/source/libs/teckit/ChangeLog @@ -1,3 +1,8 @@ +2009-06-25 Peter Breitenlohner <peb@mppmu.mpg.de> + + * source/Compiler.h: change type of Compiler::Pass.passType + long -> UInt32, to avoid compiler warnings. + 2009-06-24 Peter Breitenlohner <peb@mppmu.mpg.de> * configure.ac: enable cxx-runtime-hack (for teckit_compile). diff --git a/Build/source/libs/teckit/source/Compiler.h b/Build/source/libs/teckit/source/Compiler.h index b849821d10d..039ad1a1bde 100644 --- a/Build/source/libs/teckit/source/Compiler.h +++ b/Build/source/libs/teckit/source/Compiler.h @@ -230,7 +230,7 @@ protected: vector<UInt32> byteClassLines; vector<UInt32> uniClassLines; - long passType; + UInt32 passType; UInt32 uniDefault; UInt8 byteDefault; bool supplementaryChars; |