diff --git a/include/FieldRegistry.h b/include/FieldRegistry.h index 0eef91024..4755e3b6c 100644 --- a/include/FieldRegistry.h +++ b/include/FieldRegistry.h @@ -41,7 +41,10 @@ class FieldRegistry break; } default: - throw std::runtime_error("Unsupported number of reference states for field " + name + " with " + std::to_string(numStates) + " states and " + std::to_string(numDim) + " dims."); + throw std::runtime_error( + "Unsupported number of reference states for field " + name + + " with " + std::to_string(numStates) + " states and " + + std::to_string(numDim) + " dims."); } break; } @@ -56,7 +59,10 @@ class FieldRegistry break; } default: - throw std::runtime_error("Unsupported number of reference states for field " + name + " with " + std::to_string(numStates) + " states and " + std::to_string(numDim) + " dims."); + throw std::runtime_error( + "Unsupported number of reference states for field " + name + + " with " + std::to_string(numStates) + " states and " + + std::to_string(numDim) + " dims."); } break; }