aboutsummaryrefslogtreecommitdiff
path: root/zencore/include
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2022-01-25 15:23:40 +0100
committerMartin Ridgers <[email protected]>2022-01-25 15:25:26 +0100
commit7025ea47e04a45c2d72c00dba3546617f323ec94 (patch)
tree39d09a705c3091fd69faa4869616ff643f761d22 /zencore/include
parentMerge branch 'main' of https://github.com/EpicGames/zen (diff)
downloadzen-7025ea47e04a45c2d72c00dba3546617f323ec94.tar.xz
zen-7025ea47e04a45c2d72c00dba3546617f323ec94.zip
Fixed missing template decorator on RefPtr friend class
Diffstat (limited to 'zencore/include')
-rw-r--r--zencore/include/zencore/refcount.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/zencore/include/zencore/refcount.h b/zencore/include/zencore/refcount.h
index afee8536f..254a22db5 100644
--- a/zencore/include/zencore/refcount.h
+++ b/zencore/include/zencore/refcount.h
@@ -114,6 +114,7 @@ public:
private:
T* m_Ref = nullptr;
+ template <typename U>
friend class RefPtr;
};