aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorColin Snover2017-10-06 15:28:03 -0500
committerColin Snover2017-10-06 22:56:13 -0500
commitd5e09a9f68a8032b1e5887e50df96e16fda827be (patch)
tree06e9b8bfac77b8b4738efe6bdb9113c9329dd042 /engines
parent4521e9774af526b945f550c7607cf1b82d649154 (diff)
downloadscummvm-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')
-rw-r--r--engines/sci/graphics/lists32.h12
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 {