mirror of https://gitee.com/bigwinds/arangodb
fix compile warnings because of mismatched class/struct usages
This commit is contained in:
parent
b73b4668d0
commit
b31ef5356c
|
@ -41,8 +41,8 @@ class IndexLookupContext;
|
|||
/// by the datafile the element is in. If the last byte in data[] is 1, then
|
||||
/// value.data contains the actual VelocyPack data in place.
|
||||
struct IndexElementValue {
|
||||
friend class HashIndexElement;
|
||||
friend class SkiplistIndexElement;
|
||||
friend struct HashIndexElement;
|
||||
friend struct SkiplistIndexElement;
|
||||
|
||||
public:
|
||||
IndexElementValue() {}
|
||||
|
|
|
@ -50,7 +50,7 @@ typedef std::string ShardID; // ID of a shard
|
|||
typedef std::unordered_map<ShardID, std::vector<ServerID>> ShardMap;
|
||||
|
||||
class CollectionRevisionsCache;
|
||||
class DatafileStatisticsContainer;
|
||||
struct DatafileStatisticsContainer;
|
||||
class Ditches;
|
||||
class FollowerInfo;
|
||||
class Index;
|
||||
|
@ -59,7 +59,6 @@ class ManagedDocumentResult;
|
|||
struct OperationOptions;
|
||||
class PhysicalCollection;
|
||||
class PrimaryIndex;
|
||||
class SimpleIndexElement;
|
||||
class StringRef;
|
||||
class Transaction;
|
||||
|
||||
|
|
Loading…
Reference in New Issue