reactivemarkets / toolbox-cpp

The Reactive C++ Toolbox is an open source library of C++20 components designed for efficient, asynchronous network applications on the Linux platform.
https://reactivemarkets.github.io/toolbox-cpp/
Other
21 stars 20 forks source link

chore: fix or suppress most warnings #144

Closed Shivix closed 3 years ago

Shivix commented 3 years ago

Fixes around 80% of the warnings from clang-tidy mostly through suppressing false positives using //NOLINT (...) or [[maybe_unused]] but also fixes a few true positives.

DEV-3349