File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,6 @@ this value can only be returned by the [jerry_error_type](#jerry_error_type).
146
146
147
147
Possible compile time enabled feature types:
148
148
149
- - JERRY_FEATURE_CPOINTER_32_BIT - 32 bit compressed pointers
150
149
- JERRY_FEATURE_ERROR_MESSAGES - error messages
151
150
- JERRY_FEATURE_JS_PARSER - js-parser
152
151
- JERRY_FEATURE_HEAP_STATS - memory statistics
Original file line number Diff line number Diff line change @@ -1693,9 +1693,6 @@ jerry_feature_enabled (const jerry_feature_t feature) /**< feature to check */
1693
1693
JERRY_ASSERT (feature < JERRY_FEATURE__COUNT );
1694
1694
1695
1695
return (false
1696
- #if JERRY_CPOINTER_32_BIT
1697
- || feature == JERRY_FEATURE_CPOINTER_32_BIT
1698
- #endif /* JERRY_CPOINTER_32_BIT */
1699
1696
#if JERRY_ERROR_MESSAGES
1700
1697
|| feature == JERRY_FEATURE_ERROR_MESSAGES
1701
1698
#endif /* JERRY_ERROR_MESSAGES */
Original file line number Diff line number Diff line change @@ -74,7 +74,6 @@ typedef enum
74
74
*/
75
75
typedef enum
76
76
{
77
- JERRY_FEATURE_CPOINTER_32_BIT , /**< 32 bit compressed pointers */
78
77
JERRY_FEATURE_ERROR_MESSAGES , /**< error messages */
79
78
JERRY_FEATURE_JS_PARSER , /**< js-parser */
80
79
JERRY_FEATURE_HEAP_STATS , /**< memory statistics */
You can’t perform that action at this time.
0 commit comments