summaryrefslogtreecommitdiff
path: root/core/fxcrt
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt')
-rw-r--r--core/fxcrt/autorestorer.h (renamed from core/fxcrt/cfx_autorestorer.h)18
1 files changed, 12 insertions, 6 deletions
diff --git a/core/fxcrt/cfx_autorestorer.h b/core/fxcrt/autorestorer.h
index a8c5125c4e..745a56fff2 100644
--- a/core/fxcrt/cfx_autorestorer.h
+++ b/core/fxcrt/autorestorer.h
@@ -2,19 +2,25 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CORE_FXCRT_CFX_AUTORESTORER_H_
-#define CORE_FXCRT_CFX_AUTORESTORER_H_
+#ifndef CORE_FXCRT_AUTORESTORER_H_
+#define CORE_FXCRT_AUTORESTORER_H_
+
+namespace fxcrt {
template <typename T>
-class CFX_AutoRestorer {
+class AutoRestorer {
public:
- explicit CFX_AutoRestorer(T* location)
+ explicit AutoRestorer(T* location)
: m_Location(location), m_OldValue(*location) {}
- ~CFX_AutoRestorer() { *m_Location = m_OldValue; }
+ ~AutoRestorer() { *m_Location = m_OldValue; }
private:
T* const m_Location;
const T m_OldValue;
};
-#endif // CORE_FXCRT_CFX_AUTORESTORER_H_
+} // namespace fxcrt
+
+using fxcrt::AutoRestorer;
+
+#endif // CORE_FXCRT_AUTORESTORER_H_