We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustfmt 1.4.18-nightly (c1e9b7b 2020-06-13)
When I run rustfmt on this, it stays like this:
self.renderer.render( texture, identity, // model identity, // perspective identity, // view None, // alpha false, // depth_test &mut target, );
But when I remove &mut before target:
&mut
target
self.renderer.render( texture, identity, // model identity, // perspective identity, // view None, // alpha false, // depth_test target, );
rustfmt formats it like this:
Note: texture, identity, // model in one line. :(
texture, identity, // model
Expected output
The text was updated successfully, but these errors were encountered:
@calebcartwright this is the same issue that we're dealing with in #5337 (comment), and I think we'll need a new variant to resolve it.
Sorry, something went wrong.
topecongiro
No branches or pull requests
When I run rustfmt on this, it stays like this:
But when I remove
&mut
beforetarget
:rustfmt formats it like this:
Note:
texture, identity, // model
in one line.:(
Expected output
The text was updated successfully, but these errors were encountered: