aboutsummaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-04 07:18:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-04 07:18:24 +0000
commiteeb39e0152f94aaaf3b503f6719ce5b6c50a1481 (patch)
treec8a34d3ed2c0bf1625b20ed19d672c01e2632fd4 /vm_method.c
parent71f3943558343683d8f1099c6f0d4be130829e34 (diff)
downloadruby-eeb39e0152f94aaaf3b503f6719ce5b6c50a1481.tar.gz
vm.c: prototype
* vm.c (rb_next_class_sequence): use ANSI style definition and prorotype declaration, instead of old-K&R style. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm_method.c b/vm_method.c
index b8b3b579aa..41064ad9b4 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -42,7 +42,8 @@ rb_clear_cache_by_class(VALUE klass)
if (klass && klass != Qundef) {
if (klass == rb_cBasicObject || klass == rb_cObject || klass == rb_mKernel) {
INC_VM_STATE_VERSION();
- } else {
+ }
+ else {
rb_class_clear_method_cache(klass);
}
}