1. 15 Jul, 2018 3 commits
    • Philipp A Hartmann's avatar
      Suppress -Wformat-overflow warning/error · 15251168
      Philipp A Hartmann authored
      GCC 7 and later warn about overflow/truncation when using
      sprintf and related functions with fixed-size buffers.
      
      Suppress the warning in schematest.cpp.
      15251168
    • 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
    • Philipp A Hartmann's avatar
      Fix -Wclass-memaccess warnings/errors · fa5963a2
      Philipp A Hartmann authored
      Recent GCC versions warn about using memcpy/memmove to
      write to a class pointer (-Wclass-memaccess).
      
      Avoid the warnings by casting to void* first.
      
      Closes #1086.
      Closes #1205.
      Closes #1246.
      fa5963a2
  2. 12 Jul, 2018 2 commits
  3. 03 Jul, 2018 3 commits
  4. 02 Jul, 2018 1 commit
  5. 19 Jun, 2018 1 commit
  6. 18 Jun, 2018 1 commit
  7. 17 Jun, 2018 1 commit
  8. 16 Jun, 2018 7 commits
  9. 15 Jun, 2018 18 commits
  10. 14 Jun, 2018 1 commit
  11. 13 Jun, 2018 1 commit
  12. 02 Jun, 2018 1 commit