mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-10-11 03:53:22 +02:00
Prevent -Wshadow warnings with gcc versions 4.8.5, 5.3.1 and 6.2.1.
This commit is contained in:
@@ -404,8 +404,8 @@ public:
|
||||
return (*this);
|
||||
}
|
||||
|
||||
void GetAndClear(CSerializeData &data) {
|
||||
data.insert(data.end(), begin(), end());
|
||||
void GetAndClear(CSerializeData &d) {
|
||||
d.insert(d.end(), begin(), end());
|
||||
clear();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user