diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-26 08:42:23 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-26 08:42:23 +0000 |
commit | 00c5138b03f530146cb1de06403f2693e285afe1 (patch) | |
tree | a5005382db1b072bd5240282cd9df8d322c17113 /Build | |
parent | c9cbd89c5951f716503a21244d5add6802ce4236 (diff) |
small fix to avoid compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@13965 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-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; |