From 795bef73942c4030f2b9b00f6b951f73c7584c0a Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Sun, 25 Mar 2018 14:22:58 +0100 Subject: [PATCH] Fix compilation error on GCC 7.3.1 The extra qualification is necessary for the lookup to succeed. --- include/bounce/common/template/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bounce/common/template/array.h b/include/bounce/common/template/array.h index 028dfd2..e920edd 100644 --- a/include/bounce/common/template/array.h +++ b/include/bounce/common/template/array.h @@ -238,7 +238,7 @@ public : void operator=(const b3StackArray& other) { - b3Array::Swap((const b3Array& )other); + b3Array::Swap((const b3Array&) (other)); } void operator=(const b3Array& other)