Eliminate trivial differences between the reference examples

This commit is contained in:
Olly Betts 2014-11-05 10:43:42 +13:00
commit ac1f067ce9
18 changed files with 15 additions and 79 deletions

View file

@ -31,7 +31,7 @@ public:
VectorArray(int maxsize);
~VectorArray();
int size();
/* This wrapper provides an alternative to the [] operator */
%extend {
Vector &get(int index) {
@ -42,7 +42,3 @@ public:
}
}
};