diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-11-06 11:05:45 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-11-06 11:05:45 +0100 |
commit | dbd68011363b01f22ab85e11ad52a8e90da9611a (patch) | |
tree | 6d1bec44119ab3fa99ace9298f0ac3575fcdc15a /src/libctor.cc | |
parent | 92cc25c10bcba1f14cbf28bd0298311b8e81a2ea (diff) |
Use std::source_location instead of __FILE__.
Diffstat (limited to 'src/libctor.cc')
-rw-r--r-- | src/libctor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libctor.cc b/src/libctor.cc index c752192..1fe1298 100644 --- a/src/libctor.cc +++ b/src/libctor.cc @@ -200,7 +200,7 @@ Options: no_default_build = true; for(const auto& add_file : add_files) { - reg(add_file.data(), [](){ return std::vector<BuildConfiguration>{};}); + reg(add_file.data()); } for(const auto& remove_file : remove_files) |