Fix compilation error on GCC 7.3.1
The extra qualification is necessary for the lookup to succeed.
This commit is contained in:
parent
950de0854b
commit
795bef7394
@ -238,7 +238,7 @@ public :
|
|||||||
|
|
||||||
void operator=(const b3StackArray<T, N>& other)
|
void operator=(const b3StackArray<T, N>& other)
|
||||||
{
|
{
|
||||||
b3Array<T>::Swap((const b3Array<T>& )other);
|
b3Array<T>::Swap((const b3Array<T>&) (other));
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator=(const b3Array<T>& other)
|
void operator=(const b3Array<T>& other)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user