Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/src/history.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

== Version 5.5.0

* Fix jam/{CPP} bind definitions of 4 or more values in a single
declared argument not actually adding all the definitions.
-- _Paolo Pastori_

== Version 5.4.2

Fix detection of Visual Studio 2026 to account for non-native tools being
Expand Down
2 changes: 1 addition & 1 deletion src/engine/bind.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ template <int C>
arg_<C + 1> operator+(const arg_<C> & a, const param_ & b)
{
arg_<C + 1> result;
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];
result.args[C] = b;
return result;
}
Expand Down