-
Notifications
You must be signed in to change notification settings - Fork 970
Closed
Labels
C-bugCategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICECategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICEI-poor-formattingIssue: poor formattingIssue: poor formattingonly-with-optionRequires a non-default option value to reproduceRequires a non-default option value to reproduce
Description
fn cxx(&self, target: &str) -> &Path {
match self.cxx.get(target) {
Some(p) => p.path(),
- None => panic!("\n\ntarget `{}` is not configured as a host,
- only as a target\n\n", target),
+ None => {
+ panic!("\n\ntarget `{}` is not configured as a host,
+ \
+ only as a target\n\n",
+ target)
+ }
}
}
Metadata
Metadata
Assignees
Labels
C-bugCategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICECategory: this is a bug; use also I-* labels for specific bug kinds, e.g. I-non-idempotency or I-ICEI-poor-formattingIssue: poor formattingIssue: poor formattingonly-with-optionRequires a non-default option value to reproduceRequires a non-default option value to reproduce