From b74bd9e24e1205b7449404fd05172664b211d82c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 29 May 2022 14:55:51 +0200 Subject: Make all task lists std::set instead of std::list to make sure to not contain duplicates. --- src/unittest.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/unittest.h') diff --git a/src/unittest.h b/src/unittest.h index 7eef0e2..8dee33c 100644 --- a/src/unittest.h +++ b/src/unittest.h @@ -3,11 +3,11 @@ // See accompanying file LICENSE for details. #pragma once -#include +#include #include class Task; class Settings; -int runUnitTests(std::list>& tasks, +int runUnitTests(std::set>& tasks, const Settings& settings); -- cgit v1.2.3