1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #ifndef INCLUDED_O3TL_DELETER_HXX
11 #define INCLUDED_O3TL_DELETER_HXX
13 #include <sal/config.h>
17 #if defined(__COVERITY__)
18 #define suppress_fun_call_w_exception(expr) \
31 #define suppress_fun_call_w_exception(expr) \
40 /** To markup std::unique_ptr that coverity warns might throw exceptions
41 which won't throw in practice, or where std::terminate is
42 an acceptable response if they do
44 template <typename T
> struct default_delete
46 void operator()(T
* p
) noexcept
{ suppress_fun_call_w_exception(delete p
); }
51 void operator()(void* p
) { std::free(p
); }
54 template <typename uniqueptr
> void reset_preserve_ptr_during(uniqueptr
& ptr
)
56 // HACK: for the case where the dtor of the obj held by ptr will trigger
57 // functions which expect ptr to still be set during the dtor.
58 // e.g. SdrObject::GetBroadcaster() is called during the destructor
59 // in SdrEdgeObj::Notify(). So delete first, then clear the pointer
61 // coverity[leaked_storage] - not a leak, deleted on line above
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */