Hi all,
what i discuss with Tor
i mean the construct 
         (void) bSuccess;
         assert(bSuccess);
is a little bit ugly
 
In <assert.h>
 
#ifdef  NDEBUG
 
#define assert(_Expression)     ((void)0)
 
#else
 
Why '((void)0)' better empty or
 
we define this
 
#ifdef  NDEBUG
 
#define assert(_Expression)     ((void) (Expression) )
 
#else
 
 
But I am not really sure for work in all situations, but we can do define a special macro for this 
situation
 
 
Juergen
Context
- RE: Useless includes (maybe...) · Juergen Funk Mailinglist
 
  Privacy Policy |
  
Impressum (Legal Info) |
  
Copyright information: Unless otherwise specified, all text and images
  on this website are licensed under the
  
Creative Commons Attribution-Share Alike 3.0 License.
  This does not include the source code of LibreOffice, which is
  licensed under the Mozilla Public License (
MPLv2).
  "LibreOffice" and "The Document Foundation" are
  registered trademarks of their corresponding registered owners or are
  in actual use as trademarks in one or more countries. Their respective
  logos and icons are also subject to international copyright laws. Use
  thereof is explained in our 
trademark policy.