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:
Christophe Chevalier 2021-01-30 15:09:38 +01:00
parent 5bd7e2ab6d
commit f59b2b238f
1 changed files with 1 additions and 1 deletions

View File

@ -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) {