diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 7c1523f0b..1283db134 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -359,8 +359,8 @@ namespace RTLIL // of cell types). the following functions helps with that. template - bool in(T first, Args... rest) const { - return in(first) || in(rest...); + bool in(T first, Args&&... rest) const { + return in(first) || in(std::forward(rest)...); } bool in(IdString rhs) const { return *this == rhs; }