Skip to content

Commit a45176f

Browse files
author
Hana Dusíková
committed
regenerate single header includes
1 parent e7e8944 commit a45176f

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

single-header/ctre-unicode.hpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3558,6 +3558,16 @@ template <typename CB> constexpr int64_t negative_helper(ctre::set<>, CB &, int6
35583558
return start;
35593559
}
35603560

3561+
template <auto Property, typename CB>
3562+
constexpr auto negative_helper(ctre::binary_property<Property>, CB &&, int64_t start) {
3563+
return start;
3564+
}
3565+
3566+
template <auto Property, auto Value, typename CB>
3567+
constexpr auto negative_helper(ctre::property<Property, Value>, CB &&, int64_t start) {
3568+
return start;
3569+
}
3570+
35613571
template <typename Head, typename... Rest, typename CB> constexpr int64_t negative_helper(ctre::set<Head, Rest...>, CB & cb, int64_t start) {
35623572
start = negative_helper(Head{}, cb, start);
35633573
return negative_helper(ctre::set<Rest...>{}, cb, start);

single-header/ctre.hpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3555,6 +3555,16 @@ template <typename CB> constexpr int64_t negative_helper(ctre::set<>, CB &, int6
35553555
return start;
35563556
}
35573557

3558+
template <auto Property, typename CB>
3559+
constexpr auto negative_helper(ctre::binary_property<Property>, CB &&, int64_t start) {
3560+
return start;
3561+
}
3562+
3563+
template <auto Property, auto Value, typename CB>
3564+
constexpr auto negative_helper(ctre::property<Property, Value>, CB &&, int64_t start) {
3565+
return start;
3566+
}
3567+
35583568
template <typename Head, typename... Rest, typename CB> constexpr int64_t negative_helper(ctre::set<Head, Rest...>, CB & cb, int64_t start) {
35593569
start = negative_helper(Head{}, cb, start);
35603570
return negative_helper(ctre::set<Rest...>{}, cb, start);

0 commit comments

Comments
 (0)