fix issue with excessively pedantic stl on archlinux

pull/1682/head
Jeff Becker 3 years ago
parent 75b4758037
commit 4f1bd14d3c
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -84,7 +84,7 @@ namespace llarp
last = next;
// advance to next non-delimiter
while (str[last] == delimiter and last < str_size)
while (last < str_size and str[last] == delimiter)
last++;
}
else

Loading…
Cancel
Save