diff options
Diffstat (limited to 'include/o3tl/deleter.hxx')
-rw-r--r-- | include/o3tl/deleter.hxx | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/include/o3tl/deleter.hxx b/include/o3tl/deleter.hxx deleted file mode 100644 index 7f9e50dd9146..000000000000 --- a/include/o3tl/deleter.hxx +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#ifndef INCLUDED_O3TL_DELETER_HXX -#define INCLUDED_O3TL_DELETER_HXX - -#include <functional> - -namespace o3tl { - -/** - * Function object to allow deleting instances stored in STL containers as - * pointers. - */ -template<typename T> -struct default_deleter : public std::unary_function<T*, void> -{ - void operator() (T* p) - { - delete p; - } -}; - -} - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |