Philipp A Hartmann a26267d16d Fix -Wsign-conversion warnings/errors
GCC 8 (incorrectly) warns about sign conversions in (constant)
array size expressions:

error: conversion to 'long unsigned int' from 'int' may
change the sign of the result [-Werror=sign-conversion]
     char schemaBuffer_[128 * 1024];

Make these expressions unsigned by adding a 'u' suffix to
the first operands.
2018-07-15 16:01:02 +02:00
..
2018-06-16 12:32:17 +02:00
2017-08-07 11:58:37 +08:00
2016-06-13 07:24:26 -07:00
2017-02-07 01:08:51 -08:00
2016-09-16 12:13:02 +08:00
2016-02-02 18:20:36 +08:00
2016-04-06 01:16:00 +08:00
2018-01-13 12:51:24 +08:00