diff options
| author | Pavel Janík <[email protected]> | 2017-03-03 16:20:33 +0100 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2017-03-18 07:59:50 +0100 |
| commit | bb2aaeeeeae207c3eaeb12bcae4fb700b601ab51 (patch) | |
| tree | 934aac40037cffad17956cf79d8cca5b0081b17a /src/streams.h | |
| parent | Merge #9818: Save watch only key timestamps when reimporting keys (diff) | |
| download | discoin-bb2aaeeeeae207c3eaeb12bcae4fb700b601ab51.tar.xz discoin-bb2aaeeeeae207c3eaeb12bcae4fb700b601ab51.zip | |
Prevent -Wshadow warnings with gcc versions 4.8.5, 5.3.1 and 6.2.1.
Diffstat (limited to 'src/streams.h')
| -rw-r--r-- | src/streams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streams.h b/src/streams.h index 3c24c2c37..1387b9cf5 100644 --- a/src/streams.h +++ b/src/streams.h @@ -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(); } |