mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #8338
5858f05
GCC: Fix -Wstringop-overflow= warnings (Jeffrey Ryan)
This commit is contained in:
commit
72cba50458
1 changed files with 3 additions and 0 deletions
|
@ -44,9 +44,12 @@ reverse_bytes(signed char size, char *address){
|
|||
char * first = address;
|
||||
char * last = first + size - 1;
|
||||
for(;first < last;++first, --last){
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wstringop-overflow="
|
||||
char x = *last;
|
||||
*last = *first;
|
||||
*first = x;
|
||||
#pragma GCC diagnostic pop
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue