We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001013c commit b8377e5Copy full SHA for b8377e5
compiler/rustc_session/src/config.rs
@@ -1411,20 +1411,6 @@ impl RustcOptGroup {
1411
pub fn apply(&self, options: &mut getopts::Options) {
1412
(self.apply)(options);
1413
}
1414
-
1415
- pub fn stable<F>(name: &'static str, f: F) -> RustcOptGroup
1416
- where
1417
- F: Fn(&mut getopts::Options) -> &mut getopts::Options + 'static,
1418
- {
1419
- RustcOptGroup { name, apply: Box::new(f), stability: OptionStability::Stable }
1420
- }
1421
1422
- pub fn unstable<F>(name: &'static str, f: F) -> RustcOptGroup
1423
1424
1425
1426
- RustcOptGroup { name, apply: Box::new(f), stability: OptionStability::Unstable }
1427
1428
1429
1430
pub fn make_opt(
0 commit comments