Merge pull request #5392 from sfc-gh-tclinkenbeard/fix-subobject-linkage

Remove anonymous namespace in PaxosConfigTransaction.actor.cpp
This commit is contained in:
Trevor Clinkenbeard 2021-08-16 16:08:09 -07:00 committed by GitHub
commit 182d3538ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,8 +22,6 @@
#include "fdbclient/PaxosConfigTransaction.h"
#include "flow/actorcompiler.h" // must be last include
namespace {
// TODO: Some replicas may reply after quorum has already been achieved, and we may want to add them to the readReplicas
// list
class GetGenerationQuorum {
@ -72,8 +70,6 @@ public:
Optional<Version> getLastSeenLiveVersion() const { return lastSeenLiveVersion; }
};
} // namespace
class PaxosConfigTransactionImpl {
ConfigTransactionCommitRequest toCommit;
Future<GetGenerationQuorum::Result> getGenerationFuture;