Skip to content

Commit 3d71859

Browse files
committed
Improve doc of TMemBlock::TMemBlock ctor.
1 parent 3c7fa4a commit 3d71859

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

io/io/src/TMemFile.cxx

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ TMemFile::TMemBlock::TMemBlock() : fPrevious(0), fNext(0), fBuffer(0), fSize(0)
5151

5252
////////////////////////////////////////////////////////////////////////////////
5353
/// Constructor allocating the memory buffer.
54+
///
55+
/// \param size: size of the buffer to be allocated. A value of -1 means that
56+
/// no allocation should happen, leaving fBuffer and fSize at 0.
57+
///
58+
/// \param previous: previous TMemBlock, used to set up the linked list.
5459

5560
TMemFile::TMemBlock::TMemBlock(Long64_t size, TMemBlock *previous) :
5661
fPrevious(previous), fNext(0), fBuffer(0), fSize(0)

0 commit comments

Comments
 (0)