From e166206702c8dbd3162452cf26f368e856ac0138 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 11 Dec 2024 19:15:18 +0100 Subject: More clang-tidy fixes and increase warning level (and fix them) --- src/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/task.h') diff --git a/src/task.h b/src/task.h index 0303b2e..e930a54 100644 --- a/src/task.h +++ b/src/task.h @@ -28,7 +28,7 @@ public: virtual ~Task() = default; int registerDepTasks(const std::vector>& tasks); - virtual int registerDepTasksInner(const std::vector>& tasks) { return 0; } + virtual int registerDepTasksInner([[maybe_unused]]const std::vector>& tasks) { return 0; } bool operator==(const std::string& dep); -- cgit v1.2.3