AlwaysBreakTemplateDeclarations: true
I felt that the clangfmt changes in c2279000a926db64c0bb0caa69025031174d576a
were not making the code better.
diff --git a/src/cxx.cc b/src/cxx.cc
index e8ec979..b64333c 100644
--- a/src/cxx.cc
+++ b/src/cxx.cc
@@ -5,7 +5,8 @@
#include <memory>
#include <stdexcept>
-template <typename Exception> static void panic [[noreturn]] (const char *msg) {
+template <typename Exception>
+static void panic [[noreturn]] (const char *msg) {
#if defined(RUST_CXX_NO_EXCEPTIONS)
std::cerr << "Error: " << msg << ". Aborting." << std::endl;
std::terminate();