Replace tabs with spaces in mmappool and buffer

This commit is contained in:
Eugen Wissner 2017-05-12 21:02:24 +02:00
parent 38afeac071
commit e2bed0cfcb
2 changed files with 530 additions and 530 deletions

View File

@ -333,9 +333,9 @@ struct WriteBuffer(T = ubyte)
/** /**
* Params: * Params:
* size = Initial buffer size and the size by which the buffer will * size = Initial buffer size and the size by which the buffer will
* grow. * grow.
* allocator = Allocator. * allocator = Allocator.
* *
* Precondition: $(D_INLINECODE size > 0 && allocator !is null) * Precondition: $(D_INLINECODE size > 0 && allocator !is null)
*/ */
@ -428,7 +428,7 @@ struct WriteBuffer(T = ubyte)
* Appends data to the buffer. * Appends data to the buffer.
* *
* Params: * Params:
* buffer = Buffer chunk got with $(D_PSYMBOL opIndex). * buffer = Buffer chunk got with $(D_PSYMBOL opIndex).
*/ */
ref WriteBuffer opOpAssign(string op)(in T[] buffer) ref WriteBuffer opOpAssign(string op)(in T[] buffer)
if (op == "~") if (op == "~")
@ -535,7 +535,7 @@ struct WriteBuffer(T = ubyte)
* appropriately. Always call it after $(D_PSYMBOL opIndex). * appropriately. Always call it after $(D_PSYMBOL opIndex).
* *
* Params: * Params:
* length = Length of the written data. * length = Length of the written data.
* *
* Returns: $(D_KEYWORD this). * Returns: $(D_KEYWORD this).
*/ */

File diff suppressed because it is too large Load Diff