-
Notifications
You must be signed in to change notification settings - Fork 942
Closed
Labels
bugPanic, non-idempotency, invalid code, etc.Panic, non-idempotency, invalid code, etc.only-with-optionrequires a non-default option value to reproducerequires a non-default option value to reproducepoor-formatting
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
bugPanic, non-idempotency, invalid code, etc.Panic, non-idempotency, invalid code, etc.only-with-optionrequires a non-default option value to reproducerequires a non-default option value to reproducepoor-formatting