diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:30:11 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:30:11 +0100 |
commit | f10bfc1bff1dc2792b4905c27dd22c0999162fac (patch) | |
tree | bacd83a6aa721d1427d84ef50493235fbda5b343 /test | |
parent | eb00551f0e990495c6d7533ed193f459cb449665 (diff) |
Rename BuildConfiguration struct to build_configuration
Diffstat (limited to 'test')
-rw-r--r-- | test/ctor.cc | 2 | ||||
-rw-r--r-- | test/tasks_test.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/ctor.cc b/test/ctor.cc index aa9333d..a2ad64d 100644 --- a/test/ctor.cc +++ b/test/ctor.cc @@ -5,7 +5,7 @@ namespace { -ctor::BuildConfigurations ctorTestConfigs(const ctor::settings& settings) +ctor::build_configurations ctorTestConfigs(const ctor::settings& settings) { return { diff --git a/test/tasks_test.cc b/test/tasks_test.cc index 6cd39b3..57d30e3 100644 --- a/test/tasks_test.cc +++ b/test/tasks_test.cc @@ -7,7 +7,7 @@ using namespace ctor; namespace { -BuildConfigurations ctorTestConfigs1(const ctor::settings&) +ctor::build_configurations ctorTestConfigs1(const ctor::settings&) { return { @@ -21,7 +21,7 @@ BuildConfigurations ctorTestConfigs1(const ctor::settings&) }; } -BuildConfigurations ctorTestConfigs2(const ctor::settings&) +ctor::build_configurations ctorTestConfigs2(const ctor::settings&) { return { |