diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2017-03-10 13:53:26 -0800 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2017-03-10 13:53:26 -0800 |
commit | b7f7850568c9d8f70af8d382d29c00252648e9cc (patch) | |
tree | e1590316578734afd48cb72ab196f2c3bc0e6eae /src | |
parent | 414442638a913bf5d924f9b16b2ae417cde5840b (diff) |
Properly align function arguments
Not sure why rustfmt hasn't caught this before...
Diffstat (limited to 'src')
-rw-r--r-- | src/ir/context.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ir/context.rs b/src/ir/context.rs index 6795a864..1dc4f4a4 100644 --- a/src/ir/context.rs +++ b/src/ir/context.rs @@ -1032,10 +1032,10 @@ impl<'ctx> BindgenContext<'ctx> { } return self.instantiate_template(with_id, - id, - parent_id, - ty, - location) + id, + parent_id, + ty, + location) .or_else(|| Some(id)); } |