bug #267 Fix error in chain_test in gitlab autobuild
This commit is contained in:
parent
6f6811eec4
commit
8c3a424bb6
1 changed files with 4 additions and 4 deletions
|
|
@ -34,10 +34,10 @@ namespace graphene { namespace db {
|
||||||
|
|
||||||
struct undo_state
|
struct undo_state
|
||||||
{
|
{
|
||||||
unordered_map<object_id_type, unique_ptr<object> > old_values;
|
unordered_map<object_id_type, unique_ptr<object> > old_values;
|
||||||
unordered_map<object_id_type, object_id_type> old_index_next_ids;
|
unordered_map<object_id_type, object_id_type> old_index_next_ids;
|
||||||
std::unordered_set<object_id_type> new_ids;
|
std::set<object_id_type, std::greater<object_id_type> > new_ids;
|
||||||
unordered_map<object_id_type, unique_ptr<object> > removed;
|
unordered_map<object_id_type, unique_ptr<object> > removed;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue