summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaisuke Fujimura (fd0) <[email protected]>2024-06-02 21:22:39 +0900
committerNobuyoshi Nakada <[email protected]>2024-06-02 22:12:05 +0900
commite1c9e6244b38f43496400863f610e53c36709589 (patch)
tree109e6cb4e2878d2e55a2624ce2396f9c644ff87c
parent1f8c45aa51ece7df1d7d07382b44640ab30306cb (diff)
Use real filename instead of `__FILE__`
-rw-r--r--debug_counter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug_counter.h b/debug_counter.h
index a8b95edded..481a0727e6 100644
--- a/debug_counter.h
+++ b/debug_counter.h
@@ -356,7 +356,7 @@ RB_DEBUG_COUNTER(load_path_is_not_realpath)
enum rb_debug_counter_type {
#define RB_DEBUG_COUNTER(name) RB_DEBUG_COUNTER_##name,
-#include __FILE__
+#include "debug_counter.h"
RB_DEBUG_COUNTER_MAX
#undef RB_DEBUG_COUNTER
};