From d85d31eeb6f60afab079621fdbc84ffa3f1f7c1e Mon Sep 17 00:00:00 2001 From: Giovanni La Mura <giovanni.lamura@inaf.it> Date: Thu, 19 Oct 2023 11:00:20 +0200 Subject: [PATCH] Add doc-string for List destructor --- src/include/List.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/List.h b/src/include/List.h index e1544aa8..50c34130 100644 --- a/src/include/List.h +++ b/src/include/List.h @@ -104,6 +104,8 @@ template<class T> class List { last = current; } + /*! \brief Destroy a List instance. + */ ~List() { current = last; element *old; -- GitLab