summaryrefslogtreecommitdiff
path: root/Lib/ruby/std_stack.i
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-12 22:04:58 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-13 22:45:47 +0000
commit6d0c495fd042a313e0a8d6a9d36209b92b9bf42b (patch)
tree6863db5822ec6940c0dfc3064c6b2a3aa54185da /Lib/ruby/std_stack.i
parent8c207dd3a9eae0435f219b4e70f02a503cd66b49 (diff)
downloadswig-6d0c495fd042a313e0a8d6a9d36209b92b9bf42b.tar.gz
Add missing parameter names in STL container wrappers
Mostly in STL copy constructors. Best to have parameter names as they make their way into the wrappers in some target languages.
Diffstat (limited to 'Lib/ruby/std_stack.i')
-rw-r--r--Lib/ruby/std_stack.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ruby/std_stack.i b/Lib/ruby/std_stack.i
index 600c81c96..7df48ef1b 100644
--- a/Lib/ruby/std_stack.i
+++ b/Lib/ruby/std_stack.i
@@ -14,7 +14,7 @@
template <class T>
struct traits_from<std::stack<T> > {
- static VALUE from(const std::stack<T> & vec) {
+ static VALUE from(const std::stack<T>& vec) {
return traits_from_stdseq<std::stack<T> >::from(vec);
}
};