Skip to content

Commit

Permalink
Fix 'unused_imports' warnings that started appearing in CI recently
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 authored and emilio committed Feb 19, 2024
1 parent 454ec84 commit 285eb56
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bindgen/codegen/helpers.rs
Expand Up @@ -126,7 +126,7 @@ pub(crate) mod ast_ty {
use crate::ir::function::FunctionSig;
use crate::ir::layout::Layout;
use crate::ir::ty::{FloatKind, IntKind};
use proc_macro2::{self, TokenStream};
use proc_macro2::TokenStream;
use std::str::FromStr;

pub(crate) fn c_void(ctx: &BindgenContext) -> syn::Type {
Expand Down
2 changes: 1 addition & 1 deletion bindgen/codegen/mod.rs
Expand Up @@ -52,7 +52,7 @@ use crate::ir::template::{
use crate::ir::ty::{Type, TypeKind};
use crate::ir::var::Var;

use proc_macro2::{self, Ident, Span};
use proc_macro2::{Ident, Span};
use quote::TokenStreamExt;

use crate::{Entry, HashMap, HashSet};
Expand Down
2 changes: 1 addition & 1 deletion bindgen/codegen/struct_layout.rs
Expand Up @@ -7,7 +7,7 @@ use crate::ir::context::BindgenContext;
use crate::ir::layout::Layout;
use crate::ir::ty::{Type, TypeKind};
use crate::FieldVisibilityKind;
use proc_macro2::{self, Ident, Span};
use proc_macro2::{Ident, Span};
use std::cmp;

const MAX_GUARANTEED_ALIGN: usize = 8;
Expand Down
1 change: 0 additions & 1 deletion bindgen/ir/context.rs
Expand Up @@ -29,7 +29,6 @@ use quote::ToTokens;
use std::borrow::Cow;
use std::cell::{Cell, RefCell};
use std::collections::{BTreeSet, HashMap as StdHashMap};
use std::iter::IntoIterator;
use std::mem;

/// An identifier for some kind of IR item.
Expand Down
2 changes: 1 addition & 1 deletion bindgen/ir/function.rs
Expand Up @@ -9,7 +9,7 @@ use super::ty::TypeKind;
use crate::callbacks::{ItemInfo, ItemKind};
use crate::clang::{self, ABIKind, Attribute};
use crate::parse::{ClangSubItemParser, ParseError, ParseResult};
use clang_sys::{self, CXCallingConv};
use clang_sys::CXCallingConv;

use quote::TokenStreamExt;
use std::io;
Expand Down

0 comments on commit 285eb56

Please sign in to comment.