mirror of https://gitee.com/bigwinds/arangodb
removed unused private field
This commit is contained in:
parent
4dde6e49cd
commit
153dd0d505
|
@ -72,9 +72,8 @@ uint64_t const PrimaryIndex::InitialSize = 251;
|
|||
// --SECTION-- constructors and destructors
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
PrimaryIndex::PrimaryIndex (TRI_document_collection_t* collection)
|
||||
: Index(0, std::vector<std::string>( { TRI_VOC_ATTRIBUTE_KEY } )),
|
||||
_collection(collection) {
|
||||
PrimaryIndex::PrimaryIndex (TRI_document_collection_t*)
|
||||
: Index(0, std::vector<std::string>( { TRI_VOC_ATTRIBUTE_KEY } )) {
|
||||
|
||||
_primaryIndex._nrAlloc = 0;
|
||||
_primaryIndex._nrUsed = 0;
|
||||
|
|
|
@ -130,8 +130,6 @@ namespace triagens {
|
|||
|
||||
private:
|
||||
|
||||
struct TRI_document_collection_t* _collection;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief the actual index
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue