diff options
Diffstat (limited to 'include/m_system_cpp.h')
-rw-r--r-- | include/m_system_cpp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index 2e71c4dcff..67b5a243d5 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -119,10 +119,10 @@ template<class T> struct LIST __inline int getCount(void) const { return count; }
__inline T** getArray(void) const { return items; }
- __inline LIST(const LIST& x)
- { items = NULL;
- List_Copy((SortedList*)&x, (SortedList*)this, sizeof(T));
- }
+ __inline LIST(const LIST& x)
+ { items = NULL;
+ List_Copy((SortedList*)&x, (SortedList*)this, sizeof(T));
+ }
__inline LIST& operator = (const LIST& x)
{ destroy();
|