diff options
author | 卜部昌平 <[email protected]> | 2021-01-20 11:01:35 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2021-01-27 09:30:15 +0900 |
commit | 7ccdad7be83b8bd4fcd09a5bf224d33a64fa1d6f (patch) | |
tree | 42582e9598341a4b0f98bf0a239c2cbf61a8b42d /include/ruby | |
parent | 216e6605a47fccbbadcb6b0b7e81dcf21547e14c (diff) |
fix OBJ_UNTRUST etc.
It seems I broke them in commit 9e6e39c3512f7a962c44dc3729c98a0f8be90341
Sorry!
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4100
Diffstat (limited to 'include/ruby')
-rw-r--r-- | include/ruby/internal/fl_type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/internal/fl_type.h b/include/ruby/internal/fl_type.h index 455448fe8d..994003653d 100644 --- a/include/ruby/internal/fl_type.h +++ b/include/ruby/internal/fl_type.h @@ -109,8 +109,8 @@ #define RB_OBJ_TAINTED RB_OBJ_TAINTED #define RB_OBJ_TAINTED_RAW RB_OBJ_TAINTED_RAW #define RB_OBJ_TAINT_RAW RB_OBJ_TAINT_RAW -#define RB_OBJ_UNTRUST RB_OBJ_UNTRUST -#define RB_OBJ_UNTRUSTED RB_OBJ_UNTRUSTED +#define RB_OBJ_UNTRUST RB_OBJ_TAINT +#define RB_OBJ_UNTRUSTED RB_OBJ_TAINTED /** @endcond */ /** |