Skip to content
Snippets Groups Projects
Commit f3f6cd58 authored by Tom Perkins's avatar Tom Perkins
Browse files

Clang-format fix Re #14275

parent 13105258
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,8 @@ namespace Kernel { ...@@ -10,7 +10,8 @@ namespace Kernel {
* @param checkIfEmpty Whether validator will check if the axes vector is empty * @param checkIfEmpty Whether validator will check if the axes vector is empty
*/ */
MDAxisValidator::MDAxisValidator(const std::vector<int> &axes, MDAxisValidator::MDAxisValidator(const std::vector<int> &axes,
const size_t nDimensions, const bool checkIfEmpty) const size_t nDimensions,
const bool checkIfEmpty)
: m_wsDimensions(nDimensions), m_emptyCheck(checkIfEmpty) { : m_wsDimensions(nDimensions), m_emptyCheck(checkIfEmpty) {
for (auto iter = axes.begin(); iter != axes.end(); iter++) { for (auto iter = axes.begin(); iter != axes.end(); iter++) {
m_axes.push_back(*iter); m_axes.push_back(*iter);
......
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