mirror of
https://github.com/RPCS3/asmjit.git
synced 2026-01-31 01:35:21 +01:00
Fixed a possible issue when compiling with gcc-11 (#320)
This commit is contained in:
@@ -254,7 +254,7 @@ public:
|
||||
template<size_t N>
|
||||
class StringBuilderTmp : public StringBuilder {
|
||||
public:
|
||||
ASMJIT_NONCOPYABLE(StringBuilderTmp<N>)
|
||||
ASMJIT_NONCOPYABLE(StringBuilderTmp)
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
// [Construction / Destruction]
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user