From: Richard Heck Date: Sat, 16 Dec 2017 04:28:33 +0000 (-0500) Subject: Fix #10852 compiler warnings. X-Git-Tag: lyx-2.4.0dev-acb2ca7b~4216 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1182e303b1c19e68ae7ed89b94e292c61604ae05;p=features.git Fix #10852 compiler warnings. --- diff --git a/src/support/docstream.cpp b/src/support/docstream.cpp index 04b57045b2..f8964cae60 100644 --- a/src/support/docstream.cpp +++ b/src/support/docstream.cpp @@ -168,16 +168,16 @@ protected: fprintf(stderr, "\nStopped at: 0x%04x\n", c); fputs("Unconverted input:", stderr); for (intern_type const * i = from_next + 1; i < from_end; ++i) { - unsigned int const c = *i; - fprintf(stderr, " 0x%04x", c); + unsigned int const cc = *i; + fprintf(stderr, " 0x%04x", cc); } fputs("\nConverted output:", stderr); for (extern_type const * i = to; i < to_next; ++i) { // extern_type may be signed, avoid output of // something like 0xffffffc2 - unsigned int const c = + unsigned int const cc = *reinterpret_cast(i); - fprintf(stderr, " 0x%02x", c); + fprintf(stderr, " 0x%02x", cc); } fputc('\n', stderr); fflush(stderr); @@ -222,14 +222,14 @@ protected: fprintf(stderr, "\nStopped at: 0x%02x\n", c); fputs("Unconverted input:", stderr); for (extern_type const * i = from_next + 1; i < from_end; ++i) { - unsigned int const c = + unsigned int const cc = *reinterpret_cast(i); - fprintf(stderr, " 0x%02x", c); + fprintf(stderr, " 0x%02x", cc); } fputs("\nConverted output:", stderr); for (intern_type const * i = to; i < to_next; ++i) { - unsigned int const c = *i; - fprintf(stderr, " 0x%02x", c); + unsigned int const cc = *i; + fprintf(stderr, " 0x%02x", cc); } fputc('\n', stderr); fflush(stderr);