diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-03-30 14:23:26 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-03-30 14:38:01 +0200 |
commit | 0022a217643dd7119df5dc0fcca41161d3201acc (patch) | |
tree | 8917a1f72958c4c595df4e72ca26389f9780b6c6 /src/ctor.h | |
parent | 0778d3c45d1aef18d9b2ae6769e372b2a3d83b8e (diff) |
Refactor code for registering build_configuration registrations.
Diffstat (limited to 'src/ctor.h')
-rw-r--r-- | src/ctor.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |