delete comment

This commit is contained in:
Quaternions 2024-09-03 09:40:15 -07:00
parent f0527714db
commit 4017f33447

View File

@ -119,22 +119,6 @@ macro_rules! matrix_transpose_inner {
}
}
/*
macro_rules! nested {
(($($f:ident),*) $args:tt) => {
$(nested!(@call $f $args);)*
};
(@call $f:ident ($($arg:expr),*)) => {
$f($($arg),*);
};
}
nested! {
(show1, show2)
(a, b, c)
}
*/
#[doc(hidden)]
#[macro_export(local_inner_macros)]
macro_rules! impl_matrix_operator {