1
0
Fork 0

removed unused private field

This commit is contained in:
Jan Steemann 2015-05-28 10:27:46 +02:00
parent 4dde6e49cd
commit 153dd0d505
2 changed files with 2 additions and 5 deletions

View File

@ -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;

View File

@ -130,8 +130,6 @@ namespace triagens {
private:
struct TRI_document_collection_t* _collection;
////////////////////////////////////////////////////////////////////////////////
/// @brief the actual index
////////////////////////////////////////////////////////////////////////////////