diff options
author | Joshua Nelson <jyn514@gmail.com> | 2020-04-27 15:37:47 -0400 |
---|---|---|
committer | Joshua Nelson <jyn514@gmail.com> | 2020-04-27 15:37:47 -0400 |
commit | f0607275b42e4959a22479bd28e327b2b54e2123 (patch) | |
tree | 5645cbaffed61af858cdec69d141bc6110feb1fc /src/codegen/impl_debug.rs | |
parent | 09a956866e5362bb5d6b30285651244fb1a90eee (diff) |
Run `cargo fix --edition`
Diffstat (limited to 'src/codegen/impl_debug.rs')
-rw-r--r-- | src/codegen/impl_debug.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/codegen/impl_debug.rs b/src/codegen/impl_debug.rs index eac54fd1..ed1a5e25 100644 --- a/src/codegen/impl_debug.rs +++ b/src/codegen/impl_debug.rs @@ -1,7 +1,7 @@ -use ir::comp::{BitfieldUnit, CompKind, Field, FieldData, FieldMethods}; -use ir::context::BindgenContext; -use ir::item::{HasTypeParamInArray, IsOpaque, Item, ItemCanonicalName}; -use ir::ty::{TypeKind, RUST_DERIVE_IN_ARRAY_LIMIT}; +use crate::ir::comp::{BitfieldUnit, CompKind, Field, FieldData, FieldMethods}; +use crate::ir::context::BindgenContext; +use crate::ir::item::{HasTypeParamInArray, IsOpaque, Item, ItemCanonicalName}; +use crate::ir::ty::{TypeKind, RUST_DERIVE_IN_ARRAY_LIMIT}; use proc_macro2; pub fn gen_debug_impl( |