From 0417e0728f11118eb0a26aabe9e1d5b79b874c7f Mon Sep 17 00:00:00 2001
From: bcumming <bcumming@cscs.ch>
Date: Fri, 8 Jul 2016 12:17:34 +0200
Subject: [PATCH] small style change

---
 src/point.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/point.hpp b/src/point.hpp
index feedccc9..256e518d 100644
--- a/src/point.hpp
+++ b/src/point.hpp
@@ -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);
 }
 
-- 
GitLab