diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2017-02-07 15:13:06 -0800 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2017-02-08 10:08:36 -0800 |
commit | 41a109ac25d24863dc5d70cc7e96857a0a9de54c (patch) | |
tree | 48d50d12863ee8683a601fcf1cc5697f8a9a6538 /src/ir/function.rs | |
parent | de35b8a4c510722480c7af2e02f4322aad45ec55 (diff) |
Run `cargo fmt`
Diffstat (limited to 'src/ir/function.rs')
-rw-r--r-- | src/ir/function.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ir/function.rs b/src/ir/function.rs index 9ef9c3a7..6273de28 100644 --- a/src/ir/function.rs +++ b/src/ir/function.rs @@ -229,8 +229,9 @@ impl FunctionSig { let abi = get_abi(ty.call_conv()); if abi.is_none() { - assert_eq!(cursor.kind(), CXCursor_ObjCInstanceMethodDecl, - "Invalid ABI for function signature") + assert_eq!(cursor.kind(), + CXCursor_ObjCInstanceMethodDecl, + "Invalid ABI for function signature") } Ok(Self::new(ret, args, ty.is_variadic(), abi)) |