summaryrefslogtreecommitdiff
path: root/Lib/std
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/std')
-rw-r--r--Lib/std/std_carray.swg4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/std/std_carray.swg b/Lib/std/std_carray.swg
index ebb20ce6a..de2a07627 100644
--- a/Lib/std/std_carray.swg
+++ b/Lib/std/std_carray.swg
@@ -28,8 +28,8 @@ namespace std {
carray() { }
- carray(const carray& c) {
- std::copy(c.v, c.v + size(), v);
+ carray(const carray& other) {
+ std::copy(other.v, other.v + size(), v);
}
template <class _Iterator>