1. 16 Mar, 2020 14 commits
  2. 13 Mar, 2020 23 commits
  3. 12 Mar, 2020 3 commits
    • Rosen Penev's avatar
      replace limits.h with climits · 4b57b7f5
      Rosen Penev authored
      The former was deprecated with C++14. The standard says they are the same
      with one exception:
      
      The header<climits>defines all macros the same as the C standard library
      header<limits.h>.
      
      [Note:The types of the constants defined by macros in<climits>are not
      required to match the types to which themacros refer.— end note]
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      4b57b7f5
    • Rosen Penev's avatar
      replace inttypes.h with cinttypes · 5cd400f5
      Rosen Penev authored
      The former has been deprecated by C++14. They are also the same.
      
      From the standard:
      
      The contents and meaning of the header<cinttypes>are the same as the C
      standard library header<inttypes.h>, with the following changes:
      
      -The header<cinttypes>includes the header<cstdint>instead of<stdint.h>,and
      —if and only if the typeintmax_tdesignates an extended integer type
       (6.7.1), the following functionsignatures are added:intmax_t
      abs(intmax_t);imaxdiv_t div(intmax_t, intmax_t);which shall have the same
      semantics as the function signaturesintmax_t imaxabs(intmax_t)andimaxdiv_t
      imaxdiv(intmax_t, intmax_t), respectively.
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      5cd400f5
    • Rosen Penev's avatar
      change errno.h to cerrno · edc4989d
      Rosen Penev authored
      The former is deprecated by C++14. It's also functionally the same.
      
      From the standard:
      
      19.4
      The header<cerrno>is described in Table 43. Its contents are the same as
      the POSIX header<errno.h>,except that errno shall be defined as a macro.
      [Note: The intent is to remain in close alignment with the POSIX
      standard.] A separate errno value shall be provided for each thread.
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      edc4989d