boxing_word.h: rename configuration macro name.

`MRB_WORDBOX_USE_HEAP_FLOAT` instead of `MRB_USE_FLOAT_FULL_PRECISION`.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-08-26 12:27:10 +09:00
parent e9c6e52f5b
commit fdfa0caa46
5 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ static const char pack_table[] = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS
static mrb_sym
sym_inline_pack(const char *name, size_t len)
{
#if defined(MRB_WORD_BOXING) && defined(MRB_32BIT) && !defined(MRB_USE_FLOAT_FULL_PRECISION)
#if defined(MRB_WORD_BOXING) && defined(MRB_32BIT) && !defined(MRB_WORDBOX_USE_HEAP_FLOAT)
const size_t pack_length_max = 4;
#else
const size_t pack_length_max = 5;