Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
xTachyon committed Oct 18, 2023
1 parent 0b91f08 commit 27fab6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindgen/clang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2301,7 +2301,7 @@ impl Drop for EvalResult {
#[derive(Debug, Eq, PartialEq, Copy, Clone)]
pub(crate) enum ABIKind {

Check failure on line 2302 in bindgen/clang.rs

View workflow job for this annotation

GitHub Actions / rustfmt-clippy

missing documentation for an enum
GenericItanium,

Check failure on line 2303 in bindgen/clang.rs

View workflow job for this annotation

GitHub Actions / rustfmt-clippy

missing documentation for a variant
Microsoft
Microsoft,

Check failure on line 2304 in bindgen/clang.rs

View workflow job for this annotation

GitHub Actions / rustfmt-clippy

missing documentation for a variant
}

/// Target information obtained from libclang.
Expand Down
2 changes: 1 addition & 1 deletion bindgen/ir/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use super::module::{Module, ModuleKind};
use super::template::{TemplateInstantiation, TemplateParameters};
use super::traversal::{self, Edge, ItemTraversal};
use super::ty::{FloatKind, Type, TypeKind};
use crate::clang::{self, Cursor, ABIKind};
use crate::clang::{self, ABIKind, Cursor};
use crate::codegen::CodegenError;
use crate::BindgenOptions;
use crate::{Entry, HashMap, HashSet};
Expand Down
2 changes: 1 addition & 1 deletion bindgen/ir/function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use super::item::Item;
use super::traversal::{EdgeKind, Trace, Tracer};
use super::ty::TypeKind;
use crate::callbacks::{ItemInfo, ItemKind};
use crate::clang::{self, Attribute, ABIKind};
use crate::clang::{self, ABIKind, Attribute};
use crate::parse::{ClangSubItemParser, ParseError, ParseResult};
use clang_sys::{self, CXCallingConv};

Expand Down

0 comments on commit 27fab6f

Please sign in to comment.