From fc12c6d2eb7f138ed45ebe1fe27401ccaeb030be Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Wed, 3 Jun 2015 13:49:55 +0200
Subject: [PATCH] Braces around initializer list.

---
 MathLib/TemplatePoint.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MathLib/TemplatePoint.h b/MathLib/TemplatePoint.h
index f5662211b07..63024259530 100644
--- a/MathLib/TemplatePoint.h
+++ b/MathLib/TemplatePoint.h
@@ -105,7 +105,7 @@ protected:
 
 template <typename T, std::size_t DIM>
 TemplatePoint<T,DIM>::TemplatePoint() :
-	_x({0})
+	_x({{0}})
 {}
 
 template <typename T, std::size_t DIM>
-- 
GitLab