summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-18 15:02:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-18 15:02:21 +0000
commit21367ae07716096ba4a9263b0d9aee22d15ebffa (patch)
tree71e70ec47435de958744334072117b779448a789 /include
parent06e52ba57b62d2661b4cab842b583fb4137e44de (diff)
* include/ruby/ruby.h (rb_type): forward declaration to suppress a
warning. a patch from Naohisa Goto at [ruby-dev:39350] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index 2d6ba66e5c..8fc1eb0f03 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -384,6 +384,7 @@ enum ruby_value_type {
#define BUILTIN_TYPE(x) (int)(((struct RBasic*)(x))->flags & T_MASK)
+static inline int rb_type(VALUE obj);
#define TYPE(x) rb_type((VALUE)(x))
#define RB_GC_GUARD(v) (*(volatile VALUE *)&(v))