From 1e00f0f1e1c04a8d4255720e5b26a4d3d6a985e6 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 19 Nov 2012 17:39:58 -0700 Subject: embed.fnc: Fix flags problem for regposixcc The static and inline flags are considered mutually exclusive. This is not a fatal embed error as something can't be inline unless it is also static, but the warning is there because the entry looks suspicious. Commit 2fd63cc5b615213574e0153ed2bf14d9df23c073 introduced the flags that caused the warning --- embed.fnc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embed.fnc b/embed.fnc index d659737789..0aa6faf7bc 100644 --- a/embed.fnc +++ b/embed.fnc @@ -1982,7 +1982,7 @@ Es |I32 |study_chunk |NN struct RExC_state_t *pRExC_state \ EsRn |U32 |add_data |NN struct RExC_state_t *pRExC_state|U32 n \ |NN const char *s rs |void |re_croak2 |NN const char* pat1|NN const char* pat2|... -Eis |I32 |regpposixcc |NN struct RExC_state_t *pRExC_state \ +Ei |I32 |regpposixcc |NN struct RExC_state_t *pRExC_state \ |I32 value|NULLOK SV *free_me Es |I32 |make_trie |NN struct RExC_state_t *pRExC_state \ |NN regnode *startbranch|NN regnode *first \ -- cgit v1.2.1