[前][次][番号順一覧][スレッド一覧]

ruby-changes:73414

From: Nobuyoshi <ko1@a...>
Date: Mon, 5 Sep 2022 00:17:02 +0900 (JST)
Subject: [ruby-changes:73414] 51291ade70 (master): Remove extra semicolons at the top level [ci skip]

https://git.ruby-lang.org/ruby.git/commit/?id=51291ade70

From 51291ade70d7fc972cb8229fc788456a8c2d8a6b Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Mon, 5 Sep 2022 00:16:47 +0900
Subject: Remove extra semicolons at the top level [ci skip]

---
 file.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/file.c b/file.c
index 5265d3a3a5..ced2c1e4a2 100644
--- a/file.c
+++ b/file.c
@@ -2839,14 +2839,14 @@ utime_failed(struct apply_arg *aa) https://github.com/ruby/ruby/blob/trunk/file.c#L2839
 #   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 */
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]