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>
This commit is contained in:
copilot-swe-agent[bot]
2026-05-06 10:21:10 +00:00
committed by GitHub
parent 4714160052
commit ba2ff93d6e

View File

@@ -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.