• Show log

    Commit

  • Hash : 77d7e5eb
    Author : Patrick Steinhardt
    Date : 2019-06-27T15:29:36

    clar: use `size_t` to keep track of current line number
    
    We use the `__LINE__` macro in several places throughout clar to allow
    easier traceability when e.g. a test fails. While `__LINE__` is of type
    `size_t`, the clar functions all accept an integer and thus may loose
    precision. While unlikely that any file in our codebase will exceed a
    linecount of `INT_MAX`, let's convert it anyway to silence any compiler
    warnings.