SCI32: Rewrap comments to 80 columns in lists32.h

This commit is contained in:
Colin Snover 2017-10-06 15:28:03 -05:00
parent 4521e9774a
commit d5e09a9f68

View File

@ -28,13 +28,11 @@
namespace Sci { namespace Sci {
/** /**
* StablePointerArray holds pointers in a fixed-size array * StablePointerArray holds pointers in a fixed-size array that maintains
* that maintains position of erased items until `pack` is * position of erased items until `pack` is called. It is used by DrawList,
* called. It is used by DrawList, RectList, and * RectList, and ScreenItemList. StablePointerArray takes ownership of all
* ScreenItemList. StablePointerArray takes ownership of * pointers that are passed to it and deletes them when calling `erase` or when
* all pointers that are passed to it and deletes them when * destroying the StablePointerArray.
* calling `erase` or when destroying the
* StablePointerArray.
*/ */
template<class T, uint N> template<class T, uint N>
class StablePointerArray { class StablePointerArray {