diff options
author | Christian Poveda Ruiz <31802960+pvdrz@users.noreply.github.com> | 2022-11-24 11:17:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-24 11:17:08 -0500 |
commit | 95fd17b874910184cc0fcd33b287fa4e205d9d7a (patch) | |
tree | 37b4a55919e93b8425fdc8e381a35f86bf7a5cc1 /bindgen/ir/function.rs | |
parent | 73f33e5a0288f4030e1e4389db0d9bfca1d69d2d (diff) |
Remove traits that have a single implementation (#2363)
Diffstat (limited to 'bindgen/ir/function.rs')
-rw-r--r-- | bindgen/ir/function.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bindgen/ir/function.rs b/bindgen/ir/function.rs index 7dbbb8f8..ecb3202f 100644 --- a/bindgen/ir/function.rs +++ b/bindgen/ir/function.rs @@ -7,9 +7,7 @@ use super::item::Item; use super::traversal::{EdgeKind, Trace, Tracer}; use super::ty::TypeKind; use crate::clang::{self, Attribute}; -use crate::parse::{ - ClangItemParser, ClangSubItemParser, ParseError, ParseResult, -}; +use crate::parse::{ClangSubItemParser, ParseError, ParseResult}; use clang_sys::{self, CXCallingConv}; use proc_macro2; use quote; |