diff options
-rw-r--r-- | sw/source/core/doc/list.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/doc/list.cxx b/sw/source/core/doc/list.cxx index 753965a799ce..711ebbfd1804 100644 --- a/sw/source/core/doc/list.cxx +++ b/sw/source/core/doc/list.cxx @@ -33,7 +33,7 @@ class SwListImpl SwListImpl( const OUString& sListId, SwNumRule& rDefaultListStyle, const SwNodes& rNodes ); - ~SwListImpl(); + ~SwListImpl() COVERITY_NOEXCEPT_FALSE; const OUString& GetListId() const { return msListId;} @@ -96,7 +96,7 @@ SwListImpl::SwListImpl( const OUString& sListId, while ( pNode != &rNodes.GetEndOfContent() ); } -SwListImpl::~SwListImpl() +SwListImpl::~SwListImpl() COVERITY_NOEXCEPT_FALSE { tListTrees::iterator aNumberTreeIter; for ( aNumberTreeIter = maListTrees.begin(); |