Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf committed Aug 8, 2024
1 parent d501359 commit 9814ff9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions include/FieldRegistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 9814ff9

Please sign in to comment.