File indexing completed on 2025-03-09 04:54:41

0001 /*  -*- c++ -*-
0002     stl_util.h
0003 
0004     This file is part of KMail, the KDE mail client.
0005     SPDX-FileCopyrightText: 2004 Marc Mutz <mutz@kde.org>
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #pragma once
0011 
0012 namespace MessageViewer
0013 {
0014 template<typename T>
0015 struct DeleteAndSetToZero {
0016     void operator()(const T *&t)
0017     {
0018         delete t;
0019         t = nullptr;
0020     }
0021 };
0022 }