wip
Some checks failed
📊 Benchmark the Runtime / release (pull_request) Failing after 1m16s
🚀 Lint & Test & Deploy / release (pull_request) Failing after 1m19s

This commit is contained in:
2026-01-23 14:11:27 +01:00
parent 4cb24e8ff9
commit be8161ec8d
4 changed files with 25 additions and 24 deletions

View File

@@ -125,7 +125,7 @@ pub fn nodarium_execute(_attr: TokenStream, item: TokenStream) -> TokenStream {
unsafe {
let src = result.as_ptr() as *const u8;
let dst = output_pos as *mut u8;
// nodarium_utils::log!("writing output_pos={:?} src={:?} len_bytes={:?}", output_pos, src, len_bytes);
nodarium_utils::log!("writing output_pos={:?} src={:?} len_bytes={:?}", output_pos, src, len_bytes);
dst.copy_from_nonoverlapping(src, len_bytes);
}