@@ -427,6 +427,7 @@ mod prelude {
427427}
428428
429429#[ macro_export]
430+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
430431macro_rules! NULL { ( ) => (
431432 $crate:: ඞ:: ptr:: null_mut( )
432433) }
@@ -449,6 +450,7 @@ struct __PanicOnDrop__ {} impl Drop for __PanicOnDrop__ {
449450 }
450451}
451452
453+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
452454#[ apply( hidden_export) ]
453455macro_rules! __abort_with_msg__ { ( $( $tt: tt) * ) => (
454456 match ( $crate:: __PanicOnDrop__ { } ) { _ => {
@@ -505,6 +507,7 @@ mod __ {
505507 match_cfg ! {
506508 feature = "stabby" => {
507509 #[ doc( hidden) ] /** Not part of the public API. */ #[ macro_export]
510+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
508511 macro_rules! ඞmaybe_stabby { (
509512 $( $item: tt) *
510513 ) => (
@@ -515,6 +518,7 @@ mod __ {
515518 } ,
516519 _ => {
517520 #[ doc( hidden) ] /** Not part of the public API. */ #[ macro_export]
521+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
518522 macro_rules! ඞmaybe_stabby { (
519523 $( $item: tt) *
520524 ) => (
@@ -589,18 +593,21 @@ mod __ {
589593
590594 match_cfg ! {
591595 feature = "log" => {
596+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
592597 #[ apply( hidden_export) ]
593598 macro_rules! __error__ { ( $( $msg: tt) * ) => (
594599 $crate :: log:: error! { $( $msg) * }
595600 ) }
596601 } ,
597602 feature = "std" => {
603+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
598604 #[ apply( hidden_export) ]
599605 macro_rules! __error__ { ( $( $msg: tt) * ) => (
600606 $crate :: ඞ:: eprintln! { $( $msg) * }
601607 ) }
602608 } ,
603609 _ => {
610+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
604611 #[ apply( hidden_export) ]
605612 macro_rules! __error__ { ( $( $msg: tt) * ) => (
606613 /* nothing we can do */
@@ -698,6 +705,7 @@ mod __ {
698705
699706 #[ doc( hidden) ] /** Not part of the public API! */
700707 #[ macro_export]
708+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
701709 macro_rules! ඞassert_expr { ( $e: expr $( , ) ? ) => ( $e ) }
702710 #[ doc( inline) ]
703711 pub use ඞassert_expr as assert_expr;
0 commit comments