Changed an int to std::size_t
This commit is contained in:
parent
6983a56a23
commit
71d059796e
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ void item_t::parse_tags(const char * p,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (first && q[len - 1] == ':') { // a metadata setting
|
else if (first && q[len - 1] == ':') { // a metadata setting
|
||||||
int index = 1;
|
std::size_t index = 1;
|
||||||
if (q[len - 2] == ':') {
|
if (q[len - 2] == ':') {
|
||||||
by_value = true;
|
by_value = true;
|
||||||
index = 2;
|
index = 2;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue