mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Fixed warning about shadowing variable (#1254)
You can't name parameter and structure field the same as complier frequently complain about this.
This commit is contained in:
parent
90f62a3c94
commit
225c73e181
@ -60,8 +60,8 @@ namespace TagLib {
|
||||
|
||||
#ifndef DO_NOT_DOCUMENT
|
||||
struct AtomData {
|
||||
AtomData(AtomDataType type, const ByteVector &data) :
|
||||
type(type), data(data) { }
|
||||
AtomData(AtomDataType ptype, const ByteVector &pdata) :
|
||||
type(ptype), data(pdata) { }
|
||||
AtomDataType type;
|
||||
int locale { 0 };
|
||||
ByteVector data;
|
||||
|
Loading…
Reference in New Issue
Block a user