Changeset 021751 in git for factory/debug.h


Ignore:
Timestamp:
Oct 13, 2011, 9:04:27 PM (13 years ago)
Author:
Niels Ranosch <ranosch@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
14212fa342ce39308f53a23f26a3db6a7646a3fe
Parents:
975a1da798f3ea9480afd3ba40e44cda07f71695
git-author:
Niels Ranosch <ranosch@mfo.de>2011-10-13 21:04:27+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:14:02+01:00
Message:
FIX: empty debug function-macros should better be: ((void) 0/1)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/debug.h

    r975a1d r021751  
    3434(stream << deb_level_msg << objects << endl)
    3535#else /* DEBUGOUTPUT */
    36 #define DEBINCLEVEL(stream, msg)
    37 #define DEBDECLEVEL(stream, msg)
    38 #define DEBOUTSL(stream)
    39 #define DEBOUT(stream, objects)
    40 #define DEBOUTENDL(stream)
    41 #define DEBOUTLN(stream, objects)
     36#define DEBINCLEVEL(stream, msg) ((void) 0)
     37#define DEBDECLEVEL(stream, msg) ((void) 0)
     38#define DEBOUTSL(stream) ((void) 0)
     39#define DEBOUT(stream, objects) ((void) 0)
     40#define DEBOUTENDL(stream) ((void) 0)
     41#define DEBOUTLN(stream, objects) ((void) 0)
    4242#endif /* DEBUGOUTPUT */
Note: See TracChangeset for help on using the changeset viewer.