Skip to content
Snippets Groups Projects
Commit 0417e072 authored by Benjamin Cumming's avatar Benjamin Cumming
Browse files

small style change

parent 50a16954
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ struct point {
template <typename T>
constexpr point<T>
operator+( point<T> const& lhs, point<T> const& rhs) {
operator+(point<T> const& lhs, point<T> const& rhs) {
return point<T>(lhs.x + rhs.x, lhs.y + rhs.y, lhs.z + rhs.z);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment