- Timestamp:
- Jan 24, 2019, 1:08:04 PM (4 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 756676ef1fcf4cff300fb1607a6d21293b253245
- Parents:
- 25fe907e3f7e0d124b25f97832c0b71e96c515e2
- Location:
- misc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/intset.cc
r25fe907 ra3f0fea 5 5 typedef std::unordered_set<int> si_intset; /* intset is already defined in std*/ 6 6 7 staticint si_intset_type_id = -1;7 STATIC_VAR int si_intset_type_id = -1; 8 8 9 9 void* si_intset_Init(blackbox *b) … … 198 198 extern "C" int mod_init(SModulFunctions* psModulFunctions) 199 199 { 200 blackbox *b=(blackbox*)omAlloc0(sizeof(blackbox));200 VAR blackbox *b=(blackbox*)omAlloc0(sizeof(blackbox)); 201 201 b->blackbox_Init=si_intset_Init; 202 202 b->blackbox_destroy=si_intset_destroy; … … 209 209 psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"insert_set",FALSE,insert_set); 210 210 psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"equal_set",FALSE,equal_set); 211 return MAX_TOK;212 } 211 VAR return MAX_TOK; 212 } -
misc/lt.cc
r25fe907 ra3f0fea 40 40 { 41 41 psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"same_lt",FALSE,same_lt); 42 return MAX_TOK;42 VAR return MAX_TOK; 43 43 } -
misc/lt2.cc
r25fe907 ra3f0fea 74 74 psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"same_lt2",FALSE,same_lt2); 75 75 psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"cf_at",FALSE,cf_at); 76 return MAX_TOK;76 VAR return MAX_TOK; 77 77 } -
misc/partition.cc
r25fe907 ra3f0fea 90 90 (currPack->libname? currPack->libname: ""),// the library name, 91 91 "partition"); // the help string for the module 92 return MAX_TOK;92 VAR return MAX_TOK; 93 93 } 94 94
Note: See TracChangeset
for help on using the changeset viewer.