Daniel Robertson wrote:
--- a/include/o3tl/cow_wrapper.hxx
+++ b/include/o3tl/cow_wrapper.hxx
@@ -199,7 +199,10 @@ int cow_wrapper_client::queryUnmodified() const
void release()
{
if( m_pimpl &&
!MTPolicy::decrementCount(m_pimpl->m_ref_count) )
- boost::checked_delete(m_pimpl), m_pimpl = nullptr;
+ {
+ delete m_pimpl;
+ m_pimpl = nullptr;
+ }
}
Hi Stephan, all,
Daniel reduced boost dependencies a bit with the above, nominally w/o
losing functionality.
I find -Werror=delete-incomplete for gcc and -Wdelete-incomplete for
clang - that's supposedly a much more universal way of catching the
issues checked_delete was there for?
What's the best way to enable that in tinderboxes, I'm afraid
gbuild-wide enabling might fail on older compilers?
Cheers,
-- Thorsten
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.