From 1484d74c1dfd24cfe5b6f13f76d58ff395e4d253 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 10 Jan 2023 16:00:36 +0100 Subject: Put ctor.h contents in ctor namespace. --- test/ctor.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/ctor.cc') diff --git a/test/ctor.cc b/test/ctor.cc index 89a94b9..1a63486 100644 --- a/test/ctor.cc +++ b/test/ctor.cc @@ -5,12 +5,12 @@ namespace { -BuildConfigurations ctorTestConfigs(const Settings& settings) +ctor::BuildConfigurations ctorTestConfigs(const ctor::Settings& settings) { return { { - .type = TargetType::UnitTest, + .type = ctor::TargetType::UnitTest, .target = "execute_test", .sources = { "execute_test.cc", @@ -27,7 +27,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) }, }, { - .type = TargetType::UnitTest, + .type = ctor::TargetType::UnitTest, .target = "tasks_test", .sources = { "tasks_test.cc", @@ -44,7 +44,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) }, }, { - .type = TargetType::UnitTest, + .type = ctor::TargetType::UnitTest, .target = "source_type_test", .sources = { "source_type_test.cc", @@ -61,7 +61,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) }, }, { - .type = TargetType::UnitTest, + .type = ctor::TargetType::UnitTest, .target = "tools_test", .sources = { "tools_test.cc", @@ -78,7 +78,7 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) }, }, { - .type = TargetType::UnitTestLib, + .type = ctor::TargetType::UnitTestLib, .target = "libctor_nomain.a", .sources = { "../src/build.cc", -- cgit v1.2.3