Skip to content

Commit 8390f5f

Browse files
committed
---
yaml --- r: 171343 b: refs/heads/batch c: 6795148 h: refs/heads/master i: 171341: 8e9ea4a 171339: 30971bd 171335: bcb57a4 171327: 89dad2a v: v3
1 parent c9724bf commit 8390f5f

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
3030
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32-
refs/heads/batch: 82a96a11abcb9cc4d342402746af270eb4f28325
32+
refs/heads/batch: 679514816974f23eff367b37e9082599a25900f0
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/batch/src/libsyntax/feature_gate.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use std::ascii::AsciiExt;
3636

3737
// if you change this list without updating src/doc/reference.md, @cmr will be sad
3838
static KNOWN_FEATURES: &'static [(&'static str, Status)] = &[
39-
("globs", Active),
39+
("globs", Accepted),
4040
("macro_rules", Active),
4141
("struct_variant", Accepted),
4242
("asm", Active),
@@ -232,13 +232,7 @@ impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
232232

233233
fn visit_view_item(&mut self, i: &ast::ViewItem) {
234234
match i.node {
235-
ast::ViewItemUse(ref path) => {
236-
if let ast::ViewPathGlob(..) = path.node {
237-
self.gate_feature("globs", path.span,
238-
"glob import statements are \
239-
experimental and possibly buggy");
240-
}
241-
}
235+
ast::ViewItemUse(..) => {}
242236
ast::ViewItemExternCrate(..) => {
243237
for attr in i.attrs.iter() {
244238
if attr.name().get() == "phase"{

0 commit comments

Comments
 (0)