about summary refs log tree commit diff
path: root/src/allocator.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-09-22 19:05:04 -0400
committerMichael Goulet <michael@errs.io>2024-09-22 19:11:29 -0400
commitd3903c8de3c347ac5fe40ea9a3c8a766565534da (patch)
tree3ccc48dde069d722dc517e29a18736b0acc4fa16 /src/allocator.rs
parent6c69e2f6272f08358a499852ec9e146088565e3f (diff)
Reformat using the new identifier sorting from rustfmt
Diffstat (limited to 'src/allocator.rs')
-rw-r--r--src/allocator.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/allocator.rs b/src/allocator.rs
index deeb55e9d12..e9498857fb9 100644
--- a/src/allocator.rs
+++ b/src/allocator.rs
@@ -2,8 +2,8 @@
 use gccjit::FnAttribute;
 use gccjit::{Context, FunctionType, GlobalKind, ToRValue, Type};
 use rustc_ast::expand::allocator::{
-    alloc_error_handler_name, default_fn_name, global_fn_name, AllocatorKind, AllocatorTy,
-    ALLOCATOR_METHODS, NO_ALLOC_SHIM_IS_UNSTABLE,
+    ALLOCATOR_METHODS, AllocatorKind, AllocatorTy, NO_ALLOC_SHIM_IS_UNSTABLE,
+    alloc_error_handler_name, default_fn_name, global_fn_name,
 };
 use rustc_middle::bug;
 use rustc_middle::ty::TyCtxt;