Fixed a possible issue when compiling with gcc-11 (#320)

This commit is contained in:
Ivan
2021-01-09 04:13:51 +03:00
committed by GitHub
parent 055bbe8e15
commit 723f58581a
2 changed files with 3 additions and 3 deletions

View File

@@ -254,7 +254,7 @@ public:
template<size_t N>
class StringBuilderTmp : public StringBuilder {
public:
ASMJIT_NONCOPYABLE(StringBuilderTmp<N>)
ASMJIT_NONCOPYABLE(StringBuilderTmp)
// --------------------------------------------------------------------------
// [Construction / Destruction]

View File

@@ -461,7 +461,7 @@ class ZoneHeap {
template <typename T>
class ZoneList {
public:
ASMJIT_NONCOPYABLE(ZoneList<T>)
ASMJIT_NONCOPYABLE(ZoneList)
// --------------------------------------------------------------------------
// [Link]
@@ -643,7 +643,7 @@ public:
template <typename T>
class ZoneVector : public ZoneVectorBase {
public:
ASMJIT_NONCOPYABLE(ZoneVector<T>)
ASMJIT_NONCOPYABLE(ZoneVector)
// --------------------------------------------------------------------------
// [Construction / Destruction]