Suppress MSVC warning C4702: unreachable code

This commit is contained in:
MerryMage 2019-05-02 21:41:22 +01:00
parent b1953c1cd4
commit 605a43d23e
2 changed files with 12 additions and 11 deletions

View file

@ -261,9 +261,10 @@ struct PairedLowerIndexer {
return std::make_tuple(a[0], b[0]);
}
return std::make_tuple(0, 0);
} else {
UNREACHABLE();
return {};
}
UNREACHABLE();
return {};
}
};