From 150f36db4d5c584a60b4d90ae3bd4389db512b5c Mon Sep 17 00:00:00 2001
From: Victor Poughon <victor.poughon@cnes.fr>
Date: Wed, 20 Mar 2019 09:36:26 +0100
Subject: [PATCH] WRG: fix missing braces warning

---
 Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h b/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h
index dd4b356c42..0934659e21 100644
--- a/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h
+++ b/Modules/Wrappers/ApplicationEngine/include/otbWrapperTypes.h
@@ -64,7 +64,7 @@ typedef enum
 
 namespace
 {
-constexpr std::array<const char*, 24> parameterTypesStrings = {
+constexpr std::array<const char*, 24> parameterTypesStrings = {{
   "Int",
   "Float",
   "String",
@@ -89,7 +89,7 @@ constexpr std::array<const char*, 24> parameterTypesStrings = {
   "OutputProcessXML",
   "InputProcessXML",
   "Bool"
-};
+}};
 }
 
 // Free functions to convert from and to std::string
-- 
GitLab