2022-01-24 07:00:14 +00:00
|
|
|
// cppcheck suppressions
|
|
|
|
assertWithSideEffect
|
|
|
|
|
|
|
|
// TODO: need to come back to these
|
|
|
|
duplInheritedMember
|
|
|
|
|
2022-01-24 18:39:17 +00:00
|
|
|
// TODO:
|
|
|
|
// "Using memset() on struct which contains a floating point number."
|
|
|
|
// tried:
|
|
|
|
// if (std::is_floating_point<T>::value) {
|
|
|
|
// p = 0;
|
|
|
|
// in src/mesh/MemoryPool.h
|
|
|
|
memsetClassFloat
|
|
|
|
|
2022-01-24 17:24:40 +00:00
|
|
|
// no real downside/harm in these
|
|
|
|
unusedFunction
|
|
|
|
unusedPrivateFunction
|
|
|
|
|
2022-01-24 07:00:14 +00:00
|
|
|
// most likely due to a cppcheck configuration issue (like missing an include)
|
|
|
|
syntaxError
|
|
|
|
|
|
|
|
// ignore stuff that is not ours
|
|
|
|
*:.pio/*
|
|
|
|
*:*/libdeps/*
|