From d734531b276058eb6cb81b38c4e232571d9c0b68 Mon Sep 17 00:00:00 2001
From: Nick Draper <nick.draper@stfc.ac.uk>
Date: Tue, 4 Jul 2017 13:05:55 +0100
Subject: [PATCH] clang format re #15164

---
 Framework/Kernel/inc/MantidKernel/PropertyHelper.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Framework/Kernel/inc/MantidKernel/PropertyHelper.h b/Framework/Kernel/inc/MantidKernel/PropertyHelper.h
index de6d926804a..7a452e4bf6f 100644
--- a/Framework/Kernel/inc/MantidKernel/PropertyHelper.h
+++ b/Framework/Kernel/inc/MantidKernel/PropertyHelper.h
@@ -54,7 +54,8 @@ toString(const std::vector<T> &value, const std::string &delimiter = ",",
          const std::string &listDelimiter = "-",
          typename std::enable_if<std::is_integral<T>::value &&
                                  std::is_arithmetic<T>::value>::type * = 0) {
-  return Strings::joinCompress(value.begin(), value.end(), delimiter, listDelimiter);
+  return Strings::joinCompress(value.begin(), value.end(), delimiter,
+                               listDelimiter);
 }
 
 /** Explicit specialization for a property of type std::vector<bool>.
@@ -63,7 +64,7 @@ toString(const std::vector<T> &value, const std::string &delimiter = ",",
 */
 template <>
 std::string
-toString(const std::vector<bool> &value, const std::string &delimiter, 
+toString(const std::vector<bool> &value, const std::string &delimiter,
          const std::string &unusedDelimiter,
          typename std::enable_if<std::is_same<bool, bool>::value>::type *) {
   return Strings::join(value.begin(), value.end(), delimiter);
-- 
GitLab