Changeset a3f0fea in git for misc


Ignore:
Timestamp:
Jan 24, 2019, 1:08:04 PM (4 years ago)
Author:
Reimer Behrends <behrends@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
756676ef1fcf4cff300fb1607a6d21293b253245
Parents:
25fe907e3f7e0d124b25f97832c0b71e96c515e2
Message:
Modify variable declarions for pSingular.
Location:
misc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • misc/intset.cc

    r25fe907 ra3f0fea  
    55typedef std::unordered_set<int> si_intset; /* intset is already defined in std*/
    66
    7 static int si_intset_type_id = -1;
     7STATIC_VAR int si_intset_type_id = -1;
    88
    99void* si_intset_Init(blackbox *b)
     
    198198extern "C" int mod_init(SModulFunctions* psModulFunctions)
    199199{
    200   blackbox *b=(blackbox*)omAlloc0(sizeof(blackbox));
     200  VAR blackbox *b=(blackbox*)omAlloc0(sizeof(blackbox));
    201201  b->blackbox_Init=si_intset_Init;
    202202  b->blackbox_destroy=si_intset_destroy;
     
    209209  psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"insert_set",FALSE,insert_set);
    210210  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  
    4040{
    4141  psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"same_lt",FALSE,same_lt);
    42   return MAX_TOK;
     42  VAR return MAX_TOK;
    4343}
  • misc/lt2.cc

    r25fe907 ra3f0fea  
    7474  psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"same_lt2",FALSE,same_lt2);
    7575  psModulFunctions->iiAddCproc((currPack->libname? currPack->libname: ""),"cf_at",FALSE,cf_at);
    76   return MAX_TOK;
     76  VAR return MAX_TOK;
    7777}
  • misc/partition.cc

    r25fe907 ra3f0fea  
    9090     (currPack->libname? currPack->libname: ""),// the library name,
    9191    "partition"); // the help string for the module
    92   return MAX_TOK;
     92  VAR return MAX_TOK;
    9393}
    9494
Note: See TracChangeset for help on using the changeset viewer.