feat/shape-node #36

Merged
max merged 33 commits from feat/shape-node into main 2026-02-09 22:32:14 +01:00
Showing only changes of commit 02eee5f9bf - Show all commits

View File

@@ -11,7 +11,7 @@ extern "C" {
pub fn host_log(ptr: *const u8, len: usize); pub fn host_log(ptr: *const u8, len: usize);
} }
// #[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[macro_export] #[macro_export]
macro_rules! log { macro_rules! log {
($($t:tt)*) => {{ ($($t:tt)*) => {{
@@ -25,13 +25,13 @@ macro_rules! log {
}} }}
} }
// #[cfg(not(debug_assertions))] #[cfg(not(debug_assertions))]
// #[macro_export] #[macro_export]
// macro_rules! log { macro_rules! log {
// ($($arg:tt)*) => {{ ($($arg:tt)*) => {{
// // This will expand to nothing in release builds // This will expand to nothing in release builds
// }}; }};
// } }
#[allow(dead_code)] #[allow(dead_code)]
#[rustfmt::skip] #[rustfmt::skip]