Add missing match item for Greedy.

This commit is contained in:
4lDO2
2020-06-16 21:50:56 +02:00
parent 783a03dc73
commit eebf1c3856
+1
View File
@@ -174,6 +174,7 @@ impl PartialAllocStrategy {
match raw {
0x0001_0000 => Some(Self::Optimal),
0x0002_0000 => Some(Self::GreatestRange),
0x0003_0000 => Some(Self::Greedy),
_ => None,
}
}