Base: Remove memory::DeallocationType::kDecommitRelease (an invalid combination)

This commit is contained in:
Dr. Chat
2017-05-14 00:59:52 -05:00
parent 66dbd86989
commit 16cff62d36
3 changed files with 3 additions and 6 deletions

View File

@@ -45,7 +45,6 @@ enum class AllocationType {
enum class DeallocationType {
kRelease = 1 << 0,
kDecommit = 1 << 1,
kDecommitRelease = kRelease | kDecommit,
};
// Allocates a block of memory at the given page-aligned base address.