1
Fork 0

Pacify tidy

This commit is contained in:
Jonas Schievink 2019-09-19 00:42:50 +02:00
parent a0cf5315ef
commit 98f02b2362
2 changed files with 6 additions and 3 deletions

View file

@ -78,7 +78,10 @@ impl<'tcx, M: QueryAccessors<'tcx, Key = DefId>> QueryDescription<'tcx> for M {
false
}
default fn try_load_from_disk(_: TyCtxt<'tcx>, _: SerializedDepNodeIndex) -> Option<Self::Value> {
default fn try_load_from_disk(
_: TyCtxt<'tcx>,
_: SerializedDepNodeIndex,
) -> Option<Self::Value> {
bug!("QueryDescription::load_from_disk() called for an unsupported query.")
}
}