diff options
Diffstat (limited to 'common/array.h')
-rw-r--r-- | common/array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/array.h b/common/array.h index e5434091fb..af1fe574f6 100644 --- a/common/array.h +++ b/common/array.h @@ -42,7 +42,7 @@ namespace Common { * management scheme. There, only elements that 'live' are actually constructed * (i.e., have their constructor called), and objects that are removed are * immediately destructed (have their destructor called). - * With Common::Array, this is not the case; instead, it simply uses new[] and + * With Array, this is not the case; instead, it simply uses new[] and * delete[] to allocate whole blocks of objects, possibly more than are * currently 'alive'. This simplifies memory management, but may have * undesirable side effects when one wants to use an Array of complex |