Ignore:
Timestamp:
Feb 24, 2002, 3:47:28 AM (24 years ago)
Author:
bird
Message:

New kFile* classes; now in sync with os2tools.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/common/kList.cpp

    r4129 r8003  
    1 /* $Id: kList.cpp,v 1.3 2000-08-31 03:00:13 bird Exp $ */
     1/* $Id: kList.cpp,v 1.4 2002-02-24 02:47:28 bird Exp $ */
    22/*
    33 * Simple list and sorted list template class.
     
    4949    }
    5050    #ifdef DEBUG
    51         if (cEntries != 0)
    52             fprintf(stderr,
    53                     "%s(%d, %s)internal processing warning - cEntires was incorrect upon list destruction.",
    54                     __FILE__, __LINE__, __FUNCTION__);
     51        kASSERT(cEntries == 0);
    5552    #endif
    5653    cEntries = 0;
     
    195192    }
    196193    #ifdef DEBUG
    197         if (cEntries != 0)
    198             fprintf(stderr,
    199                     "%s(%d, %s)internal processing warning - cEntires was incorrect upon list destruction.",
    200                     __FILE__, __LINE__, __FUNCTION__);
     194        kASSERT(cEntries == 0);
    201195    #endif
    202196    cEntries = 0;
Note: See TracChangeset for help on using the changeset viewer.