The code for hexxagonboard.cpp used an ambiguous variable called "empty". This variable is already predefined by GCC 11.1.0 and hence the file doesn't get compiled using GCC11. The patch fixes this error by changing the variable name to "empty_var". The code now compiles successfully using both GCC 11.1.0 and the old version GCC 9.3.0
Co-author: @Shrill