mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-15 17:30:27 +08:00
fix: size_t
[skip changelog]
This commit is contained in:
@@ -133,7 +133,7 @@ asst::OcrPack::ResultsVec
|
||||
}
|
||||
else {
|
||||
std::string output = "[";
|
||||
for (int i = 0; i < raw_results.size(); ++i) {
|
||||
for (size_t i = 0; i < raw_results.size(); ++i) {
|
||||
if (i != 0) {
|
||||
output += ", ";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user