dtinfo subdirectory DtMmdb

This commit is contained in:
Ulrich Wilkens
2013-08-28 19:16:37 +02:00
committed by Jon Trulson
parent 0be684281d
commit fbd81ef151
159 changed files with 735 additions and 588 deletions

View File

@@ -102,14 +102,14 @@ void insert_to_collection(c_code_t ccode, istream& in)
coll_type obj_type = VOID;
abs_storage* store = 0;
handler* hd = 0;
// handler* hd = 0;
int i;
for ( i = 0; i<SET_MAP_SZ ; i++ ) {
if ( set_map[i].instance_class_code == ccode ) {
obj_type = SET;
store = set_map[i].collection_hd -> its_store();
hd = set_map[i].collection_hd;
// hd = set_map[i].collection_hd;
break;
}
}
@@ -119,7 +119,7 @@ void insert_to_collection(c_code_t ccode, istream& in)
if ( list_map[i].instance_class_code == ccode ) {
obj_type = LIST;
store = list_map[i].collection_hd -> its_store();
hd = set_map[i].collection_hd;
// hd = set_map[i].collection_hd;
break;
}
}