rho-devel / rho

GNU General Public License v2.0
133 stars 23 forks source link

Remove data pointer in FixedVector #87

Closed llbit closed 8 years ago

llbit commented 8 years ago

The data pointer in FixedVector is not needed because it can be computed via the first element member.

This commit removes the data pointer and renames the first element to m_data. This should save a little space and not affect correctness.