Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui committed Jan 18, 2024
1 parent eaaa2fc commit 1c7a6b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pub mod work_mode;
pub use self::{
child_properties::{ChildProperties, ChildProperty},
config::Config,
external_libraries::ExternalLibrary,
gobjects::GObject,
property_generate_flags::PropertyGenerateFlags,
string_type::StringType,
Expand Down
5 changes: 1 addition & 4 deletions src/writer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ pub mod primitives;
pub mod to_code; // TODO:remove pub
pub mod untabber;

pub use self::{
defines::{MAX_TEXT_WIDTH, TAB, TAB_SIZE},
to_code::ToCode,
};
pub use self::{defines::TAB, to_code::ToCode};
use crate::analysis::safety_assertion_mode::SafetyAssertionMode;

pub fn safety_assertion_mode_to_str(s: SafetyAssertionMode) -> &'static str {
Expand Down

0 comments on commit 1c7a6b5

Please sign in to comment.