diff options
| author | Per Larsson <[email protected]> | 2021-10-01 11:02:19 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-10-01 11:02:19 +0200 |
| commit | 9fc0d2d328c71f6e485fc1a054e2ac89bf654f62 (patch) | |
| tree | deeca6412abae932c985829b7c7b520983b276fd /zencore/include | |
| parent | structured cache: fixed how HEAD requests are handled (diff) | |
| download | zen-9fc0d2d328c71f6e485fc1a054e2ac89bf654f62.tar.xz zen-9fc0d2d328c71f6e485fc1a054e2ac89bf654f62.zip | |
Clang format fix.
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/refcount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/refcount.h b/zencore/include/zencore/refcount.h index 0a1e15614..320718f5b 100644 --- a/zencore/include/zencore/refcount.h +++ b/zencore/include/zencore/refcount.h @@ -17,7 +17,7 @@ namespace zen { class RefCounted { public: - RefCounted() = default; + RefCounted() = default; virtual ~RefCounted() = default; inline uint32_t AddRef() const { return AtomicIncrement(const_cast<RefCounted*>(this)->m_RefCount); } |