Changeset 69658e in git for Singular/countedref.cc


Ignore:
Timestamp:
Feb 22, 2013, 12:29:35 AM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
2e2c67897e034b7ffa5b8a0dda72431cff944d4a
Parents:
367df95c40f03bb94a871481eb198951b3a42c85cd4f243f3aafc7080a52fa973f2d90493e4847f2
Message:
Merge pull request #295 from YueRen/warnings

Warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/countedref.cc

    r367df9 r69658e  
    187187/// We use the function pointer as a marker of reference types
    188188/// for CountedRef::is_ref(leftv), see the latter for details
    189 BOOLEAN countedref_CheckAssign(blackbox *b, leftv L, leftv R)
     189BOOLEAN countedref_CheckAssign(blackbox */*b*/, leftv /*L*/, leftv /*R*/)
    190190{
    191191  return FALSE;
     
    350350
    351351/// blackbox support - convert to string representation
    352 void countedref_Print(blackbox *b, void* ptr)
     352void countedref_Print(blackbox */*b*/, void* ptr)
    353353{
    354354  if (ptr) (*CountedRef::cast(ptr))->Print();
     
    357357
    358358/// blackbox support - convert to string representation
    359 char* countedref_String(blackbox *b, void* ptr)
     359char* countedref_String(blackbox */*b*/, void* ptr)
    360360{
    361361  if (ptr == NULL) return omStrDup(sNoName);
     
    364364
    365365/// blackbox support - copy element
    366 void* countedref_Copy(blackbox*b, void* ptr)
     366void* countedref_Copy(blackbox*/*b*/, void* ptr)
    367367{
    368368  if (ptr) return CountedRef::cast(ptr).outcast();
     
    478478
    479479/// blackbox support - destruction
    480 void countedref_destroy(blackbox *b, void* ptr)
     480void countedref_destroy(blackbox */*b*/, void* ptr)
    481481{
    482482  if (ptr) CountedRef::cast(ptr).destruct();
     
    667667
    668668/// blackbox support - destruction
    669 void countedref_destroyShared(blackbox *b, void* ptr)
     669void countedref_destroyShared(blackbox */*b*/, void* ptr)
    670670{
    671671  if (ptr) CountedRefShared::cast(ptr).destruct();
     
    673673
    674674
    675 BOOLEAN countedref_serialize(blackbox *b, void *d, si_link f)
     675BOOLEAN countedref_serialize(blackbox */*b*/, void *d, si_link f)
    676676{
    677677  sleftv l;
     
    685685}
    686686
    687 BOOLEAN countedref_deserialize(blackbox **b, void **d, si_link f)
     687BOOLEAN countedref_deserialize(blackbox **/*b*/, void **d, si_link f)
    688688{
    689689  // rtyp must be set correctly (to the blackbox id) by routine calling
Note: See TracChangeset for help on using the changeset viewer.