aboutsummaryrefslogtreecommitdiffstats
path: root/vm.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-05 08:15:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-05 08:15:22 +0000
commitdab8e101e3155af41e50c9e23c2a1eef243bc121 (patch)
tree08d7d188ff00998a8fb3a0854792d28f9b3efeda /vm.c
parent9c402db66b9bb2cc5463ae1b7527b3a1a7e919a0 (diff)
downloadruby-dab8e101e3155af41e50c9e23c2a1eef243bc121.tar.gz
string.c: rb_str_concat_literals
* string.c (rb_str_concat_literals): concatenate literal string fragments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 64081b49e5..77f57d9839 100644
--- a/vm.c
+++ b/vm.c
@@ -23,7 +23,7 @@
#include "probes.h"
#include "probes_helper.h"
-VALUE rb_str_append_literal(VALUE str, VALUE str2);
+VALUE rb_str_concat_literals(size_t, const VALUE*);
static inline VALUE *
VM_EP_LEP(VALUE *ep)