Skip to content

Instantly share code, notes, and snippets.

View win-t's full-sized avatar

Kurnia D Win win-t

View GitHub Profile
@p2004a
p2004a / defer.cpp
Last active May 24, 2024 01:29
Simple defer macro for c++
// SPDX-FileCopyrightText: 2015 Marek Rusinowski
// SPDX-License-Identifier: MIT
#include <memory>
#include <cstdio>
template<typename F>
class defer_finalizer {
F f;
bool moved;
public: