Skip to content

Commit

Permalink
Add omitted trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jroesch committed Jul 26, 2015
1 parent 8ea9672 commit 5ad36cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/feature_gate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ fn check_crate_inner<F>(cm: &CodeMap, span_handler: &SpanHandler,
declared_stable_lang_features: accepted_features,
declared_lib_features: unknown_features,
const_fn: cx.has_feature("const_fn"),
static_recursion: cx.has_feature("static_recursion")
static_recursion: cx.has_feature("static_recursion"),
default_type_parameter_fallback: cx.has_feature("default_type_parameter_fallback"),
}
}
Expand Down

0 comments on commit 5ad36cb

Please sign in to comment.