3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 00:05:46 +00:00

remove unneeded constructors (last round)

This commit is contained in:
Nuno Lopes 2020-07-12 17:41:57 +01:00
parent 44ec259c4c
commit bb26f219fe
37 changed files with 65 additions and 276 deletions

View file

@ -17,18 +17,19 @@ Revision History:
--*/
#pragma once
#include <utility>
template<typename T>
class ref {
T * m_ptr;
void inc_ref() {
void inc_ref() {
if (m_ptr) {
m_ptr->inc_ref();
}
}
void dec_ref() {
void dec_ref() {
if (m_ptr) {
m_ptr->dec_ref();
}
@ -49,7 +50,10 @@ public:
inc_ref();
}
ref (ref && r): m_ptr (r.detach ()) {}
ref (ref && r) noexcept : m_ptr(nullptr) {
std::swap(m_ptr, r.m_ptr);
}
~ref() {
dec_ref();
}