зеркало из https://github.com/github/ruby.git
intern/select/posix.h: remove unused parameter from rb_fd_dup
This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c
This commit is contained in:
Родитель
e5ff030f60
Коммит
ecb2ff6050
|
@ -95,11 +95,10 @@ RBIMPL_ATTR_NOALIAS()
|
|||
*
|
||||
* @param[out] dst Target fdset.
|
||||
* @param[in] src Source fdset.
|
||||
* @param[in] n Unused parameter.
|
||||
* @post `dst` is a copy of `src`.
|
||||
*/
|
||||
static inline void
|
||||
rb_fd_dup(rb_fdset_t *dst, const fd_set *src, int n)
|
||||
rb_fd_dup(rb_fdset_t *dst, const fd_set *src)
|
||||
{
|
||||
*dst = *src;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче