• Philipp A Hartmann's avatar
    Fix -Wsign-conversion warnings/errors · a26267d1
    Philipp A Hartmann authored
    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.
    a26267d1
Name
Last commit
Last update
..
CMakeLists.txt Loading commit data...
allocatorstest.cpp Loading commit data...
bigintegertest.cpp Loading commit data...
cursorstreamwrappertest.cpp Loading commit data...
documenttest.cpp Loading commit data...
dtoatest.cpp Loading commit data...
encodedstreamtest.cpp Loading commit data...
encodingstest.cpp Loading commit data...
filestreamtest.cpp Loading commit data...
fwdtest.cpp Loading commit data...
istreamwrappertest.cpp Loading commit data...
itoatest.cpp Loading commit data...
jsoncheckertest.cpp Loading commit data...
namespacetest.cpp Loading commit data...
ostreamwrappertest.cpp Loading commit data...
pointertest.cpp Loading commit data...
prettywritertest.cpp Loading commit data...
readertest.cpp Loading commit data...
regextest.cpp Loading commit data...
schematest.cpp Loading commit data...
simdtest.cpp Loading commit data...
strfunctest.cpp Loading commit data...
stringbuffertest.cpp Loading commit data...
strtodtest.cpp Loading commit data...
unittest.cpp Loading commit data...
unittest.h Loading commit data...
valuetest.cpp Loading commit data...
writertest.cpp Loading commit data...