1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove extra semicolons at the top level [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2022-09-05 00:16:47 +09:00
parent e83183b498
commit 51291ade70
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

6
file.c
View file

@ -2839,14 +2839,14 @@ utime_failed(struct apply_arg *aa)
# if defined(__has_attribute) && __has_attribute(availability)
typedef int utimensat_func(int, const char *, const struct timespec [2], int);
RBIMPL_WARNING_PUSH();
RBIMPL_WARNING_IGNORED(-Wunguarded-availability-new);
RBIMPL_WARNING_PUSH()
RBIMPL_WARNING_IGNORED(-Wunguarded-availability-new)
static inline utimensat_func *
rb_utimensat(void)
{
return &utimensat;
}
RBIMPL_WARNING_POP();
RBIMPL_WARNING_POP()
# define utimensat rb_utimensat()
# else /* __API_AVAILABLE macro does nothing on gcc */