Added a new property

This commit is contained in:
WolverinDEV
2019-07-29 20:58:01 +02:00
parent 290b915074
commit c8cae593a0
5 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ namespace ts {
this->_ring_index = index;
else if(index < 100 && this->_ring_index > std::numeric_limits<size_type>::max() - 100) {
this->_ring_index_full += 200; /* let the index overflow into the generation counter */
this->_ring_index = index; /* set the lover (16) bytes */
this->_ring_index = index; /* set the lower (16) bytes */
}
}