Fix type name warning for DDTeamCollection

Seen using 'class' now seen using 'struct' in DataDistribution.actor.cpp
This commit is contained in:
Jingyu Zhou 2019-03-26 14:18:25 -07:00
parent 7c02ee6fdd
commit c0b58080ee
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ ShardSizeBounds getShardSizeBounds(KeyRangeRef shard, int64_t maxShardSize);
//Determines the maximum shard size based on the size of the database
int64_t getMaxShardSize( double dbSizeEstimate );
class DDTeamCollection;
struct DDTeamCollection;
ACTOR Future<Void> teamRemover(DDTeamCollection* self);
ACTOR Future<Void> teamRemoverPeriodic(DDTeamCollection* self);
ACTOR Future<vector<std::pair<StorageServerInterface, ProcessClass>>> getServerListAndProcessClasses(Transaction* tr);