From 765eb18a45c6fa8ebc55203bfe477e61c6a12490 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 17 Aug 2019 23:14:52 +0900 Subject: [PATCH] Make VM_DEBUG_VERIFY_METHOD_CACHE derived from VMDEBUG VM_DEBUG_MODE has been used only here. --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_core.h b/vm_core.h index ae49798898..e4a793365b 100644 --- a/vm_core.h +++ b/vm_core.h @@ -737,7 +737,7 @@ typedef struct rb_vm_struct { #endif #ifndef VM_DEBUG_VERIFY_METHOD_CACHE -#define VM_DEBUG_VERIFY_METHOD_CACHE (VM_DEBUG_MODE != 0) +#define VM_DEBUG_VERIFY_METHOD_CACHE (VMDEBUG != 0) #endif struct rb_captured_block {