diff options
Diffstat (limited to 'flower/plist.hh')
-rw-r--r-- | flower/plist.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flower/plist.hh b/flower/plist.hh index 78df40cb17..ea2c0ecdae 100644 --- a/flower/plist.hh +++ b/flower/plist.hh @@ -16,8 +16,8 @@ class PointerList : public List<void *> public: PCursor<T> top() { return PCursor<T> (List<void*>::top()); } PCursor<T> bottom() { return PCursor<T> (List<void*>::bottom()); } - - PointerList( const T& thing ) : List<void*>( thing ) { } + void concatenate(PointerList<T> const &s) { List<void*>::concatenate(s); } +// PointerList( const T& thing ) : List<void*>( thing ) { } PointerList() {} }; |