1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 // Provides GUniquePtr to g_free a given pointer.
13 #include "mozilla/UniquePtr.h"
18 constexpr GFreeDeleter() = default;
19 void operator()(GdkEventKey
* aPtr
) const { gdk_event_free((GdkEvent
*)aPtr
); }
20 void operator()(GdkEvent
* aPtr
) const { gdk_event_free(aPtr
); }
21 void operator()(GError
* aPtr
) const { g_error_free(aPtr
); }
22 void operator()(void* aPtr
) const { g_free(aPtr
); }
23 void operator()(GtkPaperSize
* aPtr
) const { gtk_paper_size_free(aPtr
); }
27 using GUniquePtr
= UniquePtr
<T
, GFreeDeleter
>;
29 } // namespace mozilla