cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
19 lines
375 B
C++
19 lines
375 B
C++
/*
|
|
This file is part of the KDE libraries
|
|
SPDX-FileCopyrightText: 2022 Xaver Hugl <xaver.hugl@gmail.com>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
#pragma once
|
|
#include <memory>
|
|
|
|
struct CDeleter {
|
|
template<typename T>
|
|
void operator()(T *ptr)
|
|
{
|
|
free(ptr);
|
|
}
|
|
};
|
|
template<typename T>
|
|
using UniqueCPointer = std::unique_ptr<T, CDeleter>;
|