We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f34dee commit 0680f22Copy full SHA for 0680f22
1 file changed
include/CommonLib/ChunkLock.inl
@@ -8,19 +8,22 @@ namespace tsom
8
{
9
template<bool Write>
10
ChunkLock<Write>::ChunkLock(ChunkType chunk) :
11
+ m_chunk(chunk),
12
m_isLocked(false)
13
14
Lock();
15
}
16
17
18
ChunkLock<Write>::ChunkLock(ChunkType chunk, std::adopt_lock_t) :
19
20
m_isLocked(true)
21
22
23
24
25
ChunkLock<Write>::ChunkLock(ChunkType chunk, std::defer_lock_t) :
26
27
28
29
0 commit comments