Skip to content
Snippets Groups Projects
Commit d734531b authored by Nick Draper's avatar Nick Draper
Browse files

clang format re #15164

parent aa973f5b
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment