We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e64dc99 commit ce5309aCopy full SHA for ce5309a
doc/src/history.adoc
@@ -3,6 +3,10 @@
3
4
== Version 5.5.0
5
6
+* Fix jam/{CPP} bind definitions of 4 or more values in a single
7
+ declared argument not actually adding all the definitions.
8
+ -- _Paolo Pastori_
9
+
10
== Version 5.4.2
11
12
Fix detection of Visual Studio 2026 to account for non-native tools being
src/engine/bind.h
@@ -131,7 +131,7 @@ template <int C>
131
arg_<C + 1> operator+(const arg_<C> & a, const param_ & b)
132
{
133
arg_<C + 1> result;
134
- for (std::size_t i = 0; i < C - 1; ++i) result.args[i] = a.args[i];
+ for (std::size_t i = 0; i < C; ++i) result.args[i] = a.args[i];
135
result.args[C] = b;
136
return result;
137
}
0 commit comments