tagparser/adts
Martchus 0a640c9f7f Fix warnings, mostly about implicit int conversions
This should fix all non-erros, leaving only warnings which
are indeed potential problems.

The following warnings should be safe to ignore:

* Conversions of various offsets from uint64 to
  std::streamoff/int64 are safe because such offsets have
  been obtained via tellg() and other functions
  returning std::streamoff in the first place.
* It also works vice-versa since tellg() should not
  return negative offsets with exceptions enabled.
* Conversions from char to unsigned char are also ok.
* Unused diag arguments can be ignored (those might be
  useful later).
* Annotate all intended fallthoughs.
2018-06-02 23:04:53 +02:00
..
adtsframe.cpp Apply clang-format 2018-03-07 01:17:50 +01:00
adtsframe.h Apply clang-format 2018-03-07 01:17:50 +01:00
adtsstream.cpp Fix warnings, mostly about implicit int conversions 2018-06-02 23:04:53 +02:00
adtsstream.h Apply clang-format 2018-03-07 01:17:50 +01:00