summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2017-09-27 17:56:15 +0200
committerEugen Wissner <belka@caraus.de>2017-09-27 17:56:15 +0200
commit1056a2984e2d689c1f7a5c34008961f58343b04f (patch)
tree0b249883a6f095bc3f3a0fddfa5bb34e4bbc6fbe /source
parentfaebf3e4d5f6fcdfe1ad9f30c75fb478a7259fd1 (diff)
downloadtanya-1056a2984e2d689c1f7a5c34008961f58343b04f.tar.gz
Fix #303
Allocation schema is displayed incorrectly in HTML. Add pre-tag for the schema.
Diffstat (limited to 'source')
-rw-r--r--source/tanya/memory/mmappool.d2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/tanya/memory/mmappool.d b/source/tanya/memory/mmappool.d
index 7eb888d..feb25e4 100644
--- a/source/tanya/memory/mmappool.d
+++ b/source/tanya/memory/mmappool.d
@@ -89,6 +89,7 @@ else version (Windows)
* block as free and only if all blocks in the region are free, the complete
* region is deallocated.
*
+ * <pre>
* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
* | | | | | || | | |
* | |prev <----------- | || | | |
@@ -100,6 +101,7 @@ else version (Windows)
* | N | -----------> next| || N | | |
* | | | | | || | | |
* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ * </pre>
*/
final class MmapPool : Allocator
{