diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-06-08 17:31:36 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-06-09 22:25:15 +0200 |
commit | 61f7f7538cc6abb0be64c35570f38dd2541d7451 (patch) | |
tree | 092c97084f191eb502b06740a76658432dada34a /test/tasks_test.cc | |
parent | d9cb571fe126e7e94a52361d733161aa25f23597 (diff) |
Add const Settings& to build configuration callbacks.
Diffstat (limited to 'test/tasks_test.cc')
-rw-r--r-- | test/tasks_test.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/tasks_test.cc b/test/tasks_test.cc index a807d32..2e0ffc7 100644 --- a/test/tasks_test.cc +++ b/test/tasks_test.cc @@ -2,11 +2,10 @@ #include <libctor.h> #include <tasks.h> -#include <settings.h> namespace { -BuildConfigurations ctorTestConfigs1() +BuildConfigurations ctorTestConfigs1(const Settings&) { return { @@ -20,7 +19,7 @@ BuildConfigurations ctorTestConfigs1() }; } -BuildConfigurations ctorTestConfigs2() +BuildConfigurations ctorTestConfigs2(const Settings&) { return { |