diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-06-24 08:24:44 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-06-24 08:24:44 +0000 |
commit | 98bd36b19e0aee9d8ef2d560d4fc32ed2036251b (patch) | |
tree | dfb9f52097d0b95d2b8a5f2c1625bb5d5877388f /Build/source/libs/poppler/poppler-0.22.2-PATCHES/patch-02-warnings | |
parent | 611c8928492ae0b013c2d2d950980345ea5fe38d (diff) |
poppler 0.23.2
git-svn-id: svn://tug.org/texlive/trunk@30882 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.22.2-PATCHES/patch-02-warnings')
-rw-r--r-- | Build/source/libs/poppler/poppler-0.22.2-PATCHES/patch-02-warnings | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/Build/source/libs/poppler/poppler-0.22.2-PATCHES/patch-02-warnings b/Build/source/libs/poppler/poppler-0.22.2-PATCHES/patch-02-warnings deleted file mode 100644 index a3497aef8ba..00000000000 --- a/Build/source/libs/poppler/poppler-0.22.2-PATCHES/patch-02-warnings +++ /dev/null @@ -1,74 +0,0 @@ -diff -ur poppler-0.22.2.orig/poppler/GfxState.cc poppler-0.22.2/poppler/GfxState.cc ---- poppler-0.22.2.orig/poppler/GfxState.cc 2013-02-20 21:09:05.000000000 +0100 -+++ poppler-0.22.2/poppler/GfxState.cc 2013-03-12 09:42:59.000000000 +0100 -@@ -3433,7 +3433,7 @@ - - getParameterRange(&sMin, &sMax, xMin, yMin, xMax, yMax); - upperBound = ctm->norm() * getDistance(sMin, sMax); -- maxSize = ceil(upperBound); -+ maxSize = (int)ceil(upperBound); - maxSize = std::max<int>(maxSize, 2); - - { -diff -ur poppler-0.22.2.orig/poppler/GfxState.h poppler-0.22.2/poppler/GfxState.h ---- poppler-0.22.2.orig/poppler/GfxState.h 2013-02-20 21:09:05.000000000 +0100 -+++ poppler-0.22.2/poppler/GfxState.h 2013-03-12 09:42:59.000000000 +0100 -@@ -101,7 +101,7 @@ - } - - static inline Guchar dblToByte(double x) { -- return (x * 255.0); -+ return (Guchar)(x * 255.0); - } - - static inline double byteToDbl(Guchar x) { -diff -ur poppler-0.22.2.orig/poppler/Hints.cc poppler-0.22.2/poppler/Hints.cc ---- poppler-0.22.2.orig/poppler/Hints.cc 2013-02-20 21:09:05.000000000 +0100 -+++ poppler-0.22.2/poppler/Hints.cc 2013-03-12 09:42:59.000000000 +0100 -@@ -415,7 +415,7 @@ - { - Guint bit, bits; - -- if (n < 0) return -1; -+ if (n < 0) return (Guint)-1; - if (n == 0) return 0; - - if (n == 1) -@@ -423,11 +423,11 @@ - - bit = (readBit(str) << (n-1)); - if (bit == (Guint) -1) -- return -1; -+ return (Guint)-1; - - bits = readBits(n-1, str); - if (bits == (Guint) -1) -- return -1; -+ return (Guint)-1; - - return bit | bits; - } -diff -ur poppler-0.22.2.orig/poppler/Lexer.cc poppler-0.22.2/poppler/Lexer.cc ---- poppler-0.22.2.orig/poppler/Lexer.cc 2013-02-20 21:09:05.000000000 +0100 -+++ poppler-0.22.2/poppler/Lexer.cc 2013-03-12 09:42:59.000000000 +0100 -@@ -216,7 +216,7 @@ - overflownUnsignedInteger = gTrue; - xf = xi * 10.0 + (c - '0'); - } else { -- xui = xi * 10.0 + (c - '0'); -+ xui = (unsigned int)(xi * 10.0 + (c - '0')); - } - } else { - xi = xi * 10 + (c - '0'); -diff -ur poppler-0.22.2.orig/poppler/Stream.cc poppler-0.22.2/poppler/Stream.cc ---- poppler-0.22.2.orig/poppler/Stream.cc 2013-03-08 16:38:39.000000000 +0100 -+++ poppler-0.22.2/poppler/Stream.cc 2013-03-12 09:42:59.000000000 +0100 -@@ -480,7 +480,7 @@ - Guchar *p; - - int readChars = str->doGetChars(inputLineSize, inputLine); -- for ( ; readChars < inputLineSize; readChars++) inputLine[readChars] = EOF; -+ for ( ; readChars < inputLineSize; readChars++) inputLine[readChars] = (Guchar)EOF; - if (nBits == 1) { - p = inputLine; - for (i = 0; i < nVals; i += 8) { |