fix: arrow operator instead of dot

This commit is contained in:
Tajmeet Singh
2020-06-23 14:54:10 +01:00
parent 626ab31095
commit c419e1f788

View File

@@ -38,7 +38,7 @@ class Complex {
*/
Complex() {
this->re = 0.0;
this.im = 0.0;
this->im = 0.0;
}
/**