mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Replace NOLINT(runtime/explicit) comments with NOLINT (NFC) (#2992)
cpplint.py can accept either, but clang-tidy requires NOLINT.
This commit is contained in:
@@ -507,7 +507,7 @@ TEST(Signal, SignalMoving) {
|
||||
template <typename T>
|
||||
struct object {
|
||||
object();
|
||||
object(T i) : v{i} {} // NOLINT(runtime/explicit)
|
||||
object(T i) : v{i} {} // NOLINT
|
||||
|
||||
const T& val() const { return v; }
|
||||
T& val() { return v; }
|
||||
|
||||
Reference in New Issue
Block a user