We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4104db5 commit 6d561ebCopy full SHA for 6d561eb
1 file changed
src/core/contestant.cpp
@@ -36,7 +36,9 @@ auto Contestant::getScore(int index) const -> const QList<QList<int>> & { return
36
37
auto Contestant::getTimeUsed(int index) const -> const QList<QList<int>> & { return timeUsed[index]; }
38
39
-auto Contestant::getMemoryUsed(int index) const -> const QList<QList<long long>> & { return memoryUsed[index]; }
+auto Contestant::getMemoryUsed(int index) const -> const QList<QList<long long>> & {
40
+ return memoryUsed[index];
41
+}
42
43
auto Contestant::getJudingTime() const -> QDateTime { return judgingTime; }
44
0 commit comments