Skip to content
Snippets Groups Projects
Commit 1ec02cad authored by W. Spencer Smith's avatar W. Spencer Smith
Browse files

Merge branch 'patch-7' into 'master'

small fix to pointer syntax typo

See merge request !14
parents b3df0231 da24fd3a
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