Skip to content

Commit

Permalink
change seq. counter 'next' used by db indexes to uint64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjatlanta committed Jan 7, 2019
1 parent e338fdb commit 7fa01fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/db/include/graphene/db/index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ namespace graphene { namespace db {
// private
static const size_t MAX_HOLE = 100;
static const size_t _mask = ((1 << chunkbits) - 1);
size_t next = 0;
uint64_t next = 0;
vector< vector< const Object* > > content;
std::stack< object_id_type > ids_being_modified;

Expand Down

0 comments on commit 7fa01fb

Please # to comment.