From f4f23c910959b784c8433232507c56e023fbb789 Mon Sep 17 00:00:00 2001 From: Luke Roberts Date: Thu, 10 Oct 2024 09:28:45 -0600 Subject: [PATCH] format --- src/interface/state_descriptor.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/interface/state_descriptor.hpp b/src/interface/state_descriptor.hpp index b4ef1a5892a8..8f8898170f76 100644 --- a/src/interface/state_descriptor.hpp +++ b/src/interface/state_descriptor.hpp @@ -204,8 +204,9 @@ class StateDescriptor { std::vector Swarms() noexcept; const auto GetFieldVarID(const VarID &id) const { - PARTHENON_REQUIRE_THROWS(metadataMap_.count(id), - "Asking for a variable that is not in this StateDescriptor."); + PARTHENON_REQUIRE_THROWS( + metadataMap_.count(id), + "Asking for a variable that is not in this StateDescriptor."); return id; }