From 671b1359be77e30270abe53e00e24e4394d259e4 Mon Sep 17 00:00:00 2001 From: Borchev <4501931+Borchev@users.noreply.github.com> Date: Fri, 26 Jul 2024 19:01:07 -0700 Subject: [PATCH] undo accidental whitespace removal --- src/core/address_space.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/address_space.cpp b/src/core/address_space.cpp index 7d619bbda..83a407617 100644 --- a/src/core/address_space.cpp +++ b/src/core/address_space.cpp @@ -133,6 +133,7 @@ struct AddressSpace::Impl { ASSERT_MSG(it != placeholders.end(), "Cannot map already mapped region"); ASSERT_MSG(virtual_addr >= it->lower() && virtual_addr + size <= it->upper(), "Map range must be fully contained in a placeholder"); + // Windows only allows splitting a placeholder into two. // This means that if the map range is fully // contained the the placeholder we need to perform two split operations,