Fix non-inplace matrix multiplication operator.
This commit is contained in:
@@ -29,9 +29,9 @@ const char* ASTBinary::op_str() const
|
||||
{
|
||||
static const char* s_op_strings[] = {
|
||||
".", " ** ", " * ", " / ", " // ", " % ", " + ", " - ",
|
||||
" << ", " >> ", " & ", " ^ ", " | ", " and ", " or ",
|
||||
" << ", " >> ", " & ", " ^ ", " | ", " and ", " or ", " @ ",
|
||||
" += ", " -= ", " *= ", " /= ", " %= ", " **= ", " <<= ",
|
||||
" >>= ", " &= ", " ^= ", " |= ", " //= ", " @ ", " @= ",
|
||||
" >>= ", " &= ", " ^= ", " |= ", " //= ", " @= ",
|
||||
};
|
||||
return s_op_strings[op()];
|
||||
}
|
||||
|
Reference in New Issue
Block a user