Skip to content
Snippets Groups Projects
Verified Commit eebf1c38 authored by Jacob Lorentzon's avatar Jacob Lorentzon :speech_balloon:
Browse files

Add missing match item for `Greedy`.

parent 783a03dc
No related branches found
No related tags found
1 merge request!48Add missing match item for `PartialAllocStrategy::Greedy`.
...@@ -174,6 +174,7 @@ impl PartialAllocStrategy { ...@@ -174,6 +174,7 @@ impl PartialAllocStrategy {
match raw { match raw {
0x0001_0000 => Some(Self::Optimal), 0x0001_0000 => Some(Self::Optimal),
0x0002_0000 => Some(Self::GreatestRange), 0x0002_0000 => Some(Self::GreatestRange),
0x0003_0000 => Some(Self::Greedy),
_ => None, _ => None,
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment