Skip to content

Commit

Permalink
bug #267 Fix error in chain_test in gitlab autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Dobromyslov authored and serkixenos committed Jan 28, 2022
1 parent 6f6811e commit 8c3a424
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libraries/db/include/graphene/db/undo_database.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ namespace graphene { namespace db {

struct undo_state
{
unordered_map<object_id_type, unique_ptr<object> > old_values;
unordered_map<object_id_type, object_id_type> old_index_next_ids;
std::unordered_set<object_id_type> new_ids;
unordered_map<object_id_type, unique_ptr<object> > removed;
unordered_map<object_id_type, unique_ptr<object> > old_values;
unordered_map<object_id_type, object_id_type> old_index_next_ids;
std::set<object_id_type, std::greater<object_id_type> > new_ids;
unordered_map<object_id_type, unique_ptr<object> > removed;
};


Expand Down

0 comments on commit 8c3a424

Please sign in to comment.