From 875a0ec17a512cbcaa368af2eb31af4914783f42 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Jun 2025 13:46:26 +0000 Subject: [PATCH] Fix C++ formatting for multi-line string in error message Co-authored-by: jtramm <1009059+jtramm@users.noreply.github.com> --- src/random_ray/flat_source_domain.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/random_ray/flat_source_domain.cpp b/src/random_ray/flat_source_domain.cpp index 884745a4d6..ef42d88446 100644 --- a/src/random_ray/flat_source_domain.cpp +++ b/src/random_ray/flat_source_domain.cpp @@ -1095,7 +1095,8 @@ void FlatSourceDomain::convert_external_sources() auto it = point_source_map_.find(key); if (it != point_source_map_.end()) { fatal_error( - "Multiple point sources detected in the same subdivided source region." + "Multiple point sources detected in the same subdivided source " + "region." "This is not currently supported in the random ray solver."); } point_source_map_[key] = es;