Changes in / [dc56b9d:53a768d]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseargs.cfa

    rdc56b9d r53a768d  
    55#include <errno.h>
    66#include <unistd.h>
    7 #include <assert.h>
    8 
    97extern "C" {
    108        #include <getopt.h>
     
    7472
    7573        int maxv = 'h';
    76         assert( opt_count > 0 );
    7774        char optstring[opt_count * 3] = { '\0' };
    7875        {
  • src/Parser/lex.ll

    rdc56b9d r53a768d  
    1010 * Created On       : Sat Sep 22 08:58:10 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Tue Sep 20 21:18:55 2022
    13  * Update Count     : 762
     12 * Last Modified On : Tue Aug 30 18:39:54 2022
     13 * Update Count     : 760
    1414 */
    1515
     
    8282// Stop warning due to incorrectly generated flex code.
    8383#pragma GCC diagnostic ignored "-Wsign-compare"
     84
     85// lex uses __null in a boolean context, it's fine.
     86#pragma GCC diagnostic ignored "-Wnull-conversion"
    8487%}
    8588
Note: See TracChangeset for help on using the changeset viewer.