winbuild: do not use reserved keyword 'interface' for variable name
- renamed variable so as not to use a reserved keyword.
This commit is contained in:
parent
5bd7e2ab6d
commit
f59b2b238f
|
@ -385,7 +385,7 @@ struct InitializeBackupReply {
|
|||
LogEpoch backupEpoch;
|
||||
|
||||
InitializeBackupReply() = default;
|
||||
InitializeBackupReply(BackupInterface interface, LogEpoch e) : interf(interface), backupEpoch(e) {}
|
||||
InitializeBackupReply(BackupInterface bi, LogEpoch e) : interf(bi), backupEpoch(e) {}
|
||||
|
||||
template <class Ar>
|
||||
void serialize(Ar& ar) {
|
||||
|
|
Loading…
Reference in New Issue