It means you won't be able to use operators directly on complex numbers, vectors and matrices etc. Where each of these types are classes with operator-method sets.
M3=M1*M2
Instead just use standard functions
MatrixMultiply(M3,M1,M2)
Or simple OOP
M3.MulProduct M1,M2