]> git.saurik.com Git - wxWidgets.git/commitdiff
clang warnings
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 27 Jan 2011 11:37:37 +0000 (11:37 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 27 Jan 2011 11:37:37 +0000 (11:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/regex/regc_color.c
src/regex/regc_nfa.c
src/regex/regcomp.c
src/regex/regexec.c

index b3df484f083e26133c92a92a5ddb9ff8e5eb6eb0..6a07d3e7a5cda5c6adff5f4333ebe50440481a38 100644 (file)
@@ -37,7 +37,7 @@
 
 
 #define        CISERR()        VISERR(cm->v)
-#define        CERR(e)         VERR(cm->v, (e))
+#define        CERR(e)         (void)VERR(cm->v, (e))
 
 
 
index 5f65c8d83a8ad0a0a89e3d86650b40ae2dbbc26e..2db51bc7b902295dcb220671dd646cfa6c346e8c 100644 (file)
@@ -36,7 +36,7 @@
  */
 
 #define        NISERR()        VISERR(nfa->v)
-#define        NERR(e)         VERR(nfa->v, (e))
+#define        NERR(e)         (void)VERR(nfa->v, (e))
 
 
 /*
index 4ad457ff95a3a526f4489c9dc4c7d31e9d88d995..14b4533136298c6fadbda31b8e27e6652b26f8d7 100644 (file)
@@ -235,11 +235,11 @@ struct vars {
 #define        ISERR() VISERR(v)
 #define        VERR(vv,e)      ((vv)->nexttype = EOS, ((vv)->err) ? (vv)->err :\
                                                        ((vv)->err = (e)))
-#define        ERR(e)  VERR(v, e)              /* record an error */
+#define        ERR(e)  (void)VERR(v, e)                /* record an error */
 #define        NOERR() {if (ISERR()) return;}  /* if error seen, return */
 #define        NOERRN()        {if (ISERR()) return NULL;}     /* NOERR with retval */
 #define        NOERRZ()        {if (ISERR()) return 0;}        /* NOERR with retval */
-#define        INSIST(c, e)    ((c) ? 0 : ERR(e))      /* if condition false, error */
+#define        INSIST(c, e)    (void)((c) ? 0 : ERR(e))        /* if condition false, error */
 #define        NOTE(b) (v->re->re_info |= (b))         /* note visible condition */
 #define        EMPTYARC(x, y)  newarc(v->nfa, EMPTY, 0, x, y)
 
index 42e7e18923b28fa479a816c106c1ec432fa29f6e..756cba131ec0e669d013ee32e6143e4da2737d01 100644 (file)
@@ -110,7 +110,7 @@ struct vars {
 #define        VISERR(vv)      ((vv)->err != 0)        /* have we seen an error yet? */
 #define        ISERR() VISERR(v)
 #define        VERR(vv,e)      (((vv)->err) ? (vv)->err : ((vv)->err = (e)))
-#define        ERR(e)  VERR(v, e)              /* record an error */
+#define        ERR(e)  (void)VERR(v, e)                /* record an error */
 #define        NOERR() {if (ISERR()) return v->err;}   /* if error seen, return it */
 #define        OFF(p)  ((p) - v->start)
 #define        LOFF(p) ((long)OFF(p))