view plugins/links/scope_exit.cpp @ 890:73cbd6760978 stable-3

misc: merge from release-3.0
author David Demelier <markand@malikania.fr>
date Sun, 01 Sep 2019 17:23:22 +0200
parents 06cc2f95f479
children 5e25439fe98d
line wrap: on
line source

/*
 * scope_exit.cpp -- do something on scope exit
 *
 * Copyright (c) 2013-2019 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <cassert>
#include <utility>

#include "scope_exit.hpp"

using std::function;
using std::move;

namespace irccd {

scope_exit::scope_exit(function<void ()> func) noexcept
	: func_(move(func))
{
	assert(func_);
}

scope_exit::~scope_exit() noexcept
{
	func_();
}

} // !irccd