Skip to content
Snippets Groups Projects
Commit da24fd3a authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

small fix to pointer syntax

parent 6354ec08
No related branches found
No related tags found
1 merge request!14small fix to pointer syntax typo
......@@ -460,7 +460,7 @@ class Point {
this->y = y;
}
double getX(){ return this->x; }
double getY(){ return this-y; }
double getY(){ return this->y; }
};
\end{lstlisting}
\end{frame}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment