• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mrubyを超漢字で動作させる


Commit MetaInfo

Revisão84b70886cd9827593810264bf1f068044d5c6986 (tree)
Hora2015-10-21 00:16:46
AutorSeba Gamboa <me@sagm...>
CommiterSeba Gamboa

Mensagem de Log

Add block to document mrb_value type

Mudança Sumário

Diff

--- a/include/mruby/value.h
+++ b/include/mruby/value.h
@@ -98,6 +98,22 @@ enum mrb_vtype {
9898
9999 #include "mruby/object.h"
100100
101+#ifdef MRB_DOCUMENTATION_BLOCK
102+
103+/**
104+ * @abstract
105+ * MRuby value boxing.
106+ *
107+ * Actual implementation depends on configured boxing type.
108+ *
109+ * @see mruby/boxing_no.h Default boxing representation
110+ * @see mruby/boxing_word.h Word representation
111+ * @see mruby/boxing_nan.h Boxed double representation
112+ */
113+typedef void mrb_value;
114+
115+#endif
116+
101117 #if defined(MRB_NAN_BOXING)
102118 #include "boxing_nan.h"
103119 #elif defined(MRB_WORD_BOXING)