summaryrefslogtreecommitdiff
path: root/src/ctor.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2025-03-30 14:23:26 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2025-03-30 14:38:01 +0200
commit0022a217643dd7119df5dc0fcca41161d3201acc (patch)
tree8917a1f72958c4c595df4e72ca26389f9780b6c6 /src/ctor.h
parent0778d3c45d1aef18d9b2ae6769e372b2a3d83b8e (diff)
Refactor code for registering build_configuration registrations.
Diffstat (limited to 'src/ctor.h')
-rw-r--r--src/ctor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctor.h b/src/ctor.h
index 9c6fcf6..27b30af 100644
--- a/src/ctor.h
+++ b/src/ctor.h
@@ -233,7 +233,7 @@ struct build_configuration
using build_configurations = std::vector<build_configuration>;
-int reg(ctor::build_configurations (*cb)(const ctor::settings&),
+int reg(std::function<ctor::build_configurations (const ctor::settings&)> cb,
const std::source_location location = std::source_location::current());
// This type will use flags verbatim
@@ -252,7 +252,7 @@ struct external_configuration
using external_configurations = std::vector<ctor::external_configuration>;
-int reg(ctor::external_configurations (*cb)(const ctor::settings&),
+int reg(std::function<ctor::external_configurations (const ctor::settings&)> cb,
const std::source_location location = std::source_location::current());
// Convenience macro - ugly but keeps things simple(r)