serenity/AK/TemporaryChange.h
Ali Mohammad Pur 2502b5713d AK: Make TemporaryChange not copy the old value twice
This is necessary for the next commit (and might even help performance
in some very weird cases).

(cherry picked from commit e5f87eb12bdad9dfbf8a825461ac17fdb8457f50;
amended to add a missing include of StdLibExtras.h for move())
2024-11-12 04:25:50 -05:00

34 lines
582 B
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Platform.h>
#include <AK/StdLibExtras.h>
namespace AK {
template<typename T>
class TemporaryChange {
public:
TemporaryChange(T& variable, T value)
: m_variable(variable)
, m_old_value(move(variable))
{
m_variable = move(value);
}
~TemporaryChange() { m_variable = move(m_old_value); }
private:
T& m_variable;
T m_old_value;
};
}
#if USING_AK_GLOBALLY
using AK::TemporaryChange;
#endif