This commit is contained in:
2020-06-11 11:25:19 +02:00
parent 5cb02880b3
commit 5177cd5cbd
15 changed files with 1090 additions and 411 deletions

View File

@@ -108,7 +108,7 @@ public:
Scalar get() {
const Scalar res = data[tail];
tail = (tail + 1) % size;
--used;
if (used>0) {--used;}
return res;
}