Don't shadow in ColumnFamilyDescriptor
This commit is contained in:
parent
eba3fc644a
commit
30aff72f77
@ -35,9 +35,9 @@ struct ColumnFamilyDescriptor {
|
|||||||
ColumnFamilyOptions options;
|
ColumnFamilyOptions options;
|
||||||
ColumnFamilyDescriptor()
|
ColumnFamilyDescriptor()
|
||||||
: name(kDefaultColumnFamilyName), options(ColumnFamilyOptions()) {}
|
: name(kDefaultColumnFamilyName), options(ColumnFamilyOptions()) {}
|
||||||
ColumnFamilyDescriptor(const std::string& name,
|
ColumnFamilyDescriptor(const std::string& _name,
|
||||||
const ColumnFamilyOptions& options)
|
const ColumnFamilyOptions& _options)
|
||||||
: name(name), options(options) {}
|
: name(_name), options(_options) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Update Makefile if you change these
|
// Update Makefile if you change these
|
||||||
|
Loading…
Reference in New Issue
Block a user