From 785a1f10684a679f3650c3633c213bc51c30267d Mon Sep 17 00:00:00 2001
From: Sam Yates <halfflat@gmail.com>
Date: Wed, 6 Jul 2016 13:34:20 +0200
Subject: [PATCH] Address coding style issue

---
 tests/test_optional.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_optional.cpp b/tests/test_optional.cpp
index 6240f53f..35b74a47 100644
--- a/tests/test_optional.cpp
+++ b/tests/test_optional.cpp
@@ -90,8 +90,8 @@ TEST(optionalm,assign_returns) {
 
 TEST(optionalm,assign_reference) {
     double a=3.0;
-    optional<double &> ar;
-    optional<double &> br;
+    optional<double&> ar;
+    optional<double&> br;
 
     ar = a;
     EXPECT_TRUE(ar);
-- 
GitLab