diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-02 21:47:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 21:47:18 +0200 |
commit | db5f97d06f40a81341016092d1c371f897823e2a (patch) | |
tree | 260a9f8215f67df711a90ac6db9142776e442920 /core/variant.h | |
parent | d0913370b5980cbcd248b86ad6de2f14587e0ee5 (diff) | |
parent | 1a29e94c52c0a7eeab4f7f2baee92a3ce282c1e1 (diff) | |
download | redot-engine-db5f97d06f40a81341016092d1c371f897823e2a.tar.gz |
Merge pull request #41715 from vnen/variant-internal
Add VariantInternal class
Diffstat (limited to 'core/variant.h')
-rw-r--r-- | core/variant.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/variant.h b/core/variant.h index 50b7a21eda..27a709b473 100644 --- a/core/variant.h +++ b/core/variant.h @@ -120,6 +120,7 @@ public: private: friend struct _VariantCall; + friend class VariantInternal; // Variant takes 20 bytes when real_t is float, and 36 if double // it only allocates extra memory for aabb/matrix. |