From 142efba93e91209a7f336863974d4c84a969e2a3 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 23 Sep 2019 02:20:43 +0900 Subject: Adjusted directives order of a function [ci skip] --- thread.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 91f07e8a84..09f413557f 100644 --- a/thread.c +++ b/thread.c @@ -106,7 +106,9 @@ enum SLEEP_FLAGS { #define THREAD_LOCAL_STORAGE_INITIALISED FL_USER13 #define THREAD_LOCAL_STORAGE_INITIALISED_P(th) RB_FL_TEST_RAW((th), THREAD_LOCAL_STORAGE_INITIALISED) -static VALUE inline rb_thread_local_storage(VALUE thread) { +static inline VALUE +rb_thread_local_storage(VALUE thread) +{ if (LIKELY(!THREAD_LOCAL_STORAGE_INITIALISED_P(thread))) { rb_ivar_set(thread, idLocals, rb_hash_new()); RB_FL_SET_RAW(thread, THREAD_LOCAL_STORAGE_INITIALISED); -- cgit v1.2.3