Closed this issue 5 years ago · 1 comments
In Array.h file. the if condition in line 86 and 98 are:if(refColumn = true), but I think it shoud be if(refColumn == true),otherwise, the program never jumps into the else block
if(refColumn = true)
if(refColumn == true)
Yes, it is a typo. We have corrected this. Thank you for pointing out