mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
fix warning
This commit is contained in:
parent
b04dea6002
commit
20cefe452a
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ namespace sprout {
|
|||
OutputCStrIterator result = s1;
|
||||
while (*s1++)
|
||||
;
|
||||
while (*s1++ = *s2++)
|
||||
while ((*s1++ = *s2++))
|
||||
;
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue