Skip to content

Commit 5fa65b6

Browse files
committed
Fix?
1 parent d49632b commit 5fa65b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/include/core/pybind11_compat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ auto reorder_keywords(Args&&... args) {
7575
return detail::keywords<sizeof...(kw)>{kw...};
7676
}, kwargs);
7777

78-
return std::tuple_cat(extra, std::forward_as_tuple(kwds));
78+
return std::tuple_cat(extra, std::make_tuple(kwds));
7979
}
8080

8181
class module_ : public scope

0 commit comments

Comments
 (0)