Skip to content
New issue

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

Run rustfmt on liballoc #28610

Merged
merged 3 commits into from
Sep 25, 2015
Merged

Run rustfmt on liballoc #28610

merged 3 commits into from
Sep 25, 2015

Conversation

nrc
Copy link
Member

@nrc nrc commented Sep 23, 2015

No description provided.

@rust-highfive
Copy link
Contributor

r? @nikomatsakis

(rust_highfive has picked a reviewer for you, use r? to override)

@nrc
Copy link
Member Author

nrc commented Sep 23, 2015

r? @brson

@rust-highfive rust-highfive assigned brson and unassigned nikomatsakis Sep 23, 2015
@@ -251,7 +253,9 @@ impl<T: ?Sized> Arc<T> {
let cur = this.inner().weak.load(Relaxed);

// check if the weak counter is currently "locked"; if so, spin.
if cur == usize::MAX { continue }
if cur == usize::MAX {
continue
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since this is a style PR, I wonder: is it good style to use ; here? I probably would. I know it's not in the original source, so it's not rustfmt doing it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I personally prefer to leave off ; whenever it's a terminating statement that can't have anything following it anyway (e.g. break, return, continue) but that may be just my style

@nrc
Copy link
Member Author

nrc commented Sep 23, 2015

The bits Steve and I identified as sub-optimal are all bits which will be changed if we re-run with an improved rustfmt, so I don't think they should block landing this PR.

unsafe {
self.drop_slow()
}
unsafe { self.drop_slow() }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this one turned into one-line, but the previous unsafe block has the precise opposite?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We allow one-line unsafe blocks if there is a single expression, the previous one is a single statement. This is obviously an imperfect heuristic, foiled here because there is no semi-colon, even though we don't use the value. We don't have type info in rustfmt (for now), so can't insert the semicolon. I'll fix this instance manually.

@nrc
Copy link
Member Author

nrc commented Sep 23, 2015

@gankro better?

@Gankra
Copy link
Contributor

Gankra commented Sep 24, 2015

I'm pretty bumbed out about losing all these sweet one-liners (especially the ternaries and trait impls)...

But the most egregious affronts to the unsafe gods have been removed, for sure.

@brson
Copy link
Contributor

brson commented Sep 24, 2015

r=me when you are satisfied comments addressed

@nrc
Copy link
Member Author

nrc commented Sep 24, 2015

I think all the comments (except Gankro's which I don't think can be easily addressed) are about possible improvements rather than things that need to be done now.

@bors: r=brson

@bors
Copy link
Collaborator

bors commented Sep 24, 2015

📌 Commit 459f772 has been approved by brson

@bors
Copy link
Collaborator

bors commented Sep 24, 2015

⌛ Testing commit 459f772 with merge 0683d36...

bors added a commit that referenced this pull request Sep 24, 2015
@bors
Copy link
Collaborator

bors commented Sep 24, 2015

💔 Test failed - auto-linux-32-opt

@alexcrichton
Copy link
Member

@bors: retry

On Thu, Sep 24, 2015 at 4:32 PM, bors notifications@github.com wrote:

[image: 💔] Test failed - auto-linux-32-opt
http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/6560


Reply to this email directly or view it on GitHub
#28610 (comment).

@bors
Copy link
Collaborator

bors commented Sep 25, 2015

⌛ Testing commit 459f772 with merge e7a7388...

bors added a commit that referenced this pull request Sep 25, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants