epee: tidying post-incrementation -> pre-incrementation

This commit is contained in:
mj-xmr
2021-08-11 16:47:32 +02:00
parent ed506006d2
commit 0ac9a04b4c
3 changed files with 7 additions and 7 deletions

View File

@@ -102,7 +102,7 @@ namespace misc_utils
++fi;
val.assign(it, fi);
it = fi;
for(;it != buf_end;it++)
for(;it != buf_end;++it)
{
if(escape_mode/*prev_ch == '\\'*/)
{
@@ -197,7 +197,7 @@ namespace misc_utils
++chars;
++it;
}
for(;it != buf_end;it++)
for(;it != buf_end;++it)
{
const uint8_t flags = lut[(uint8_t)*it];
if (flags & 16)
@@ -224,7 +224,7 @@ namespace misc_utils
{
val.clear();
for(std::string::const_iterator it = star_end_string;it != buf_end;it++)
for(std::string::const_iterator it = star_end_string;it != buf_end;++it)
{
if (!(lut[(uint8_t)*it] & 4))
{
@@ -243,7 +243,7 @@ namespace misc_utils
{
val.clear();
for(std::string::const_iterator it = star_end_string;it != buf_end;it++)
for(std::string::const_iterator it = star_end_string;it != buf_end;++it)
{
if(!isalnum(*it) && *it != '-' && *it != '_')
{
@@ -262,7 +262,7 @@ namespace misc_utils
{
word_end = star_end_string;
for(std::string::const_iterator it = star_end_string;it != buf_end;it++)
for(std::string::const_iterator it = star_end_string;it != buf_end;++it)
{
if(isspace(*it))
{