mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Add block to document mrb_value type
This commit is contained in:
@@ -98,6 +98,22 @@ enum mrb_vtype {
|
||||
|
||||
#include "mruby/object.h"
|
||||
|
||||
#ifdef MRB_DOCUMENTATION_BLOCK
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* MRuby value boxing.
|
||||
*
|
||||
* Actual implementation depends on configured boxing type.
|
||||
*
|
||||
* @see mruby/boxing_no.h Default boxing representation
|
||||
* @see mruby/boxing_word.h Word representation
|
||||
* @see mruby/boxing_nan.h Boxed double representation
|
||||
*/
|
||||
typedef void mrb_value;
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(MRB_NAN_BOXING)
|
||||
#include "boxing_nan.h"
|
||||
#elif defined(MRB_WORD_BOXING)
|
||||
|
||||
Reference in New Issue
Block a user