Skip to content

Commit 91b9cd6

Browse files
committed
rm more unnecessary LF
1 parent c9b3a49 commit 91b9cd6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/mmdata.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -363,13 +363,13 @@ void poolFree(void *ptr);
363363
*
364364
* This function temporarily freezes the usage of a block for the current user,
365365
* and allows temporary reallocation of the free capacity to a new client.
366-
* \n
366+
*
367367
* The program maintains pools of memory blocks with free capacity. In case of
368368
* demand such a \ref block can temporarily allocate this capacity for new
369369
* usage. Of course two (or more) clients share different parts of the same
370370
* \ref block then, so a newer client must complete its usage before the old
371371
* one resumes operation and may want to extend its usage of the \ref block.
372-
* \n
372+
*
373373
* Before \p ptr is added to \ref memUsedPool, the pool size is checked and
374374
* increased by \ref MEM_POOL_GROW if full. This may lead to out-of-memory
375375
* \ref outOfMemory "exit". But if \p ptr is added to the end of the \ref memUsedPool,
@@ -719,7 +719,7 @@ extern long g_pntrTempAllocStackTop; /* Top of stack for pntrTempAlloc functio
719719
* but entries above are. So when this entry gets deallocated, dependent ones
720720
* should follow suit. A function like \ref pntrTempAlloc or \ref pntrLet
721721
* manage this automatic deallocation.
722-
* \n
722+
*
723723
* Nested functions using the \ref pntrTempAllocStack usually save the current
724724
* value and set it to \ref g_pntrTempAllocStackTop, so they can create their
725725
* local dependency chain. On return the saved value is restored.
@@ -748,7 +748,7 @@ temp_pntrString *pntrMakeTempAlloc(pntrString *s);
748748
* future growing. If the \p target block is only partially used after copy it
749749
* is added to the \ref memUsedPool. If \p source is empty, the \p target is
750750
* set to \ref NULL_PNTRSTRING.
751-
* \n
751+
*
752752
* It is assumed that the value persisted in \p target is in fact computed from
753753
* temporary operands in \ref pntrTempAllocStack. All blocks starting with
754754
* the element at \ref g_pntrStartTempAllocStack are returned to the

0 commit comments

Comments
 (0)