Gary Oberbrunner a6689b2132 Make all Pool*Array::operator[] as const
This is needed since that operator returns a local copy, not
an lvalue. Attempting to write to the return value of these operators
wouldn't change the array element. PoolVectors need locking when
writing, so this operator can't return a writable reference.

To update a Pool*Array, use the `set()` method which locks and unlocks
the array. For multiple writes, use the `write()` method which returns
a locked writable view, and unlocks when it goes out of scope.
2018-03-13 11:00:25 -04:00
..
2018-01-17 01:45:48 +01:00
2018-01-23 00:24:23 +01:00
2017-10-03 16:07:34 +05:30
2018-03-02 19:04:57 +01:00
2018-01-23 00:24:23 +01:00
2018-01-25 20:55:56 +01:00
2018-01-25 01:10:55 +01:00
2017-10-03 16:07:34 +05:30