diff options
Diffstat (limited to 'src/task.h')
-rw-r--r-- | src/task.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ public: virtual ~Task() = default; int registerDepTasks(const std::vector<std::shared_ptr<Task>>& tasks); - virtual int registerDepTasksInner(const std::vector<std::shared_ptr<Task>>& tasks) { return 0; } + virtual int registerDepTasksInner([[maybe_unused]]const std::vector<std::shared_ptr<Task>>& tasks) { return 0; } bool operator==(const std::string& dep); |