process: avoid C varargs functions

This commit is contained in:
Michele Caini
2024-05-31 08:17:42 +02:00
parent f2e825b848
commit e786a3b93d

View File

@@ -110,7 +110,8 @@ class process {
static_cast<Target *>(this)->aborted();
}
void next(...) const noexcept {}
template<typename... Args>
void next(Args &&...) const noexcept {}
protected:
/**