diff options
author | Colin Snover | 2017-10-06 15:28:03 -0500 |
---|---|---|
committer | Colin Snover | 2017-10-06 22:56:13 -0500 |
commit | d5e09a9f68a8032b1e5887e50df96e16fda827be (patch) | |
tree | 06e9b8bfac77b8b4738efe6bdb9113c9329dd042 /engines/sci | |
parent | 4521e9774af526b945f550c7607cf1b82d649154 (diff) | |
download | scummvm-rg350-d5e09a9f68a8032b1e5887e50df96e16fda827be.tar.gz scummvm-rg350-d5e09a9f68a8032b1e5887e50df96e16fda827be.tar.bz2 scummvm-rg350-d5e09a9f68a8032b1e5887e50df96e16fda827be.zip |
SCI32: Rewrap comments to 80 columns in lists32.h
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/lists32.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/engines/sci/graphics/lists32.h b/engines/sci/graphics/lists32.h index ff0bc6ceae..82e9e58b36 100644 --- a/engines/sci/graphics/lists32.h +++ b/engines/sci/graphics/lists32.h @@ -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 { |