Skip to content

Commit

Permalink
Removed more unused imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Evans committed Nov 20, 2023
1 parent e670610 commit a31c197
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions omf-c/src/error/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod state;
pub(crate) mod state;
mod types;

pub use state::{omf_error, omf_error_free, set_error, set_panic};
pub use state::{set_error, set_panic};
pub use types::{Error, InvalidArg};
2 changes: 1 addition & 1 deletion omf-c/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod tests {
use std::ffi::CStr;
use std::ptr::{null, null_mut};

use crate::error::{omf_error, omf_error_free};
use crate::error::state::{omf_error, omf_error_free};
use crate::init_functions::*;
use crate::read_iterators::*;
use crate::reader::*;
Expand Down

0 comments on commit a31c197

Please sign in to comment.