diff options
author | corvid <corvid@lavabit.com> | 2012-11-05 20:58:45 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-11-05 20:58:45 +0000 |
commit | 0ec42518524159380ffbd19d29dec5b6e65a153c (patch) | |
tree | 52d9fcbc7ce1ccd1969bc21cd41d40aae2b4da39 /test/notsosimplevector.cc | |
parent | b8e30204a84d25b011b8a86dad18915c10accc2b (diff) |
trim some spaces
Diffstat (limited to 'test/notsosimplevector.cc')
-rw-r--r-- | test/notsosimplevector.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/notsosimplevector.cc b/test/notsosimplevector.cc index 1398c191..d41288fb 100644 --- a/test/notsosimplevector.cc +++ b/test/notsosimplevector.cc @@ -22,12 +22,12 @@ int main (int argc, char *argv[]) lout::misc::NotSoSimpleVector<int> v(1); for (int i = 1; i <= 10; i++) { - v.increase (); + v.increase (); v.set(v.size () - 1, i); } print (&v); - + v.insert (2, 4); for (int i = 0; i < 5; i++) v.set (2 + i, 31 + i); @@ -45,7 +45,7 @@ int main (int argc, char *argv[]) v.set (10 + i, 531 + i); print (&v); - + v.insert (1, 4); for (int i = 0; i < 5; i++) v.set (1 + i, 21 + i); |