From ba2ff93d6e885ff81ac56f62358178aa117753e7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 6 May 2026 10:21:10 +0000 Subject: [PATCH] style: fix clang-format in temp_dir.h (collapse throw statement to one line) Agent-Logs-Url: https://github.com/XRPLF/rippled/sessions/8ef69f5f-e752-47b2-a4a3-2746d0dbfe78 Co-authored-by: mathbunnyru <12270691+mathbunnyru@users.noreply.github.com> --- include/xrpl/beast/utility/temp_dir.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/xrpl/beast/utility/temp_dir.h b/include/xrpl/beast/utility/temp_dir.h index 66d0193a8b..422948f148 100644 --- a/include/xrpl/beast/utility/temp_dir.h +++ b/include/xrpl/beast/utility/temp_dir.h @@ -40,8 +40,7 @@ uniqueRandomPath( if (!exists) return candidate; } - throw std::runtime_error( - "Unable to generate a unique path under '" + base.string() + "'"); + throw std::runtime_error("Unable to generate a unique path under '" + base.string() + "'"); } /** RAII temporary directory.