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