From c2e029db6b40aa73e7c0c0d1e14d88c2f8bb9451 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 4 Sep 2024 00:07:44 -0600 Subject: [PATCH] use std::mem::size_of; --- nod/src/io/tgc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/nod/src/io/tgc.rs b/nod/src/io/tgc.rs index e5ae834..2bd00d7 100644 --- a/nod/src/io/tgc.rs +++ b/nod/src/io/tgc.rs @@ -1,6 +1,7 @@ use std::{ io, io::{Read, Seek, SeekFrom}, + mem::size_of, path::Path, };