-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix pre-cfg_attr notation in comment #38760
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
Conversation
Commit aa3b126 has changed notation in the test from `#[ignore(cfg(ignorecfg))]` to `#[cfg_attr(ignorecfg, ignore)]`, but missed to change the comment in the accompanying Makefile.
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
Should be obvious when you inspect the changes of that directory via |
@bors r+ rollup |
📌 Commit 2dc2284 has been approved by |
⌛ Testing commit 2dc2284 with merge 4150ddf... |
💔 Test failed - status-appveyor |
@bors retry |
Fix pre-cfg_attr notation in comment Commit aa3b126 has changed notation in the test from `#[ignore(cfg(ignorecfg))]` to `#[cfg_attr(ignorecfg, ignore)]`, but missed to change the comment in the accompanying Makefile.
💔 Test failed - status-travis |
@bors: retry
* network problem
…On Mon, Jan 2, 2017 at 2:20 AM bors ***@***.***> wrote:
💔 Test failed - status-travis
<https://travis-ci.org/rust-lang/rust/builds/188204885>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#38760 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95Jr5QIBhJXfRKvAjSjqTMArllv1Kks5rOM9KgaJpZM4LYwxt>
.
|
Fix pre-cfg_attr notation in comment Commit aa3b126 has changed notation in the test from `#[ignore(cfg(ignorecfg))]` to `#[cfg_attr(ignorecfg, ignore)]`, but missed to change the comment in the accompanying Makefile.
☀️ Test successful - status-appveyor, status-travis |
Commit aa3b126 has changed notation
in the test from
#[ignore(cfg(ignorecfg))]
to#[cfg_attr(ignorecfg, ignore)]
,but missed to change the comment in the accompanying Makefile.