MINOR: pattern: export pat_ref_push()
Strangely this one was marked static inline within the file itself. Let's export it.
This commit is contained in:
parent
6a1740767c
commit
6bedf151e1
|
@ -190,6 +190,7 @@ struct pat_ref *pat_ref_new(const char *reference, const char *display, unsigned
|
|||
struct pat_ref *pat_ref_newid(int unique_id, const char *display, unsigned int flags);
|
||||
struct pat_ref_elt *pat_ref_find_elt(struct pat_ref *ref, const char *key);
|
||||
struct pat_ref_elt *pat_ref_append(struct pat_ref *ref, const char *pattern, const char *sample, int line);
|
||||
int pat_ref_push(struct pat_ref_elt *elt, struct pattern_expr *expr, int patflags, char **err);
|
||||
int pat_ref_add(struct pat_ref *ref, const char *pattern, const char *sample, char **err);
|
||||
int pat_ref_set(struct pat_ref *ref, const char *pattern, const char *sample, char **err);
|
||||
int pat_ref_set_by_id(struct pat_ref *ref, struct pat_ref_elt *refelt, const char *value, char **err);
|
||||
|
|
|
@ -1934,7 +1934,6 @@ struct pat_ref_elt *pat_ref_append(struct pat_ref *ref, const char *pattern, con
|
|||
* in <expr>. If the function fails, it returns0 and <err> is filled.
|
||||
* In success case, the function returns 1.
|
||||
*/
|
||||
static inline
|
||||
int pat_ref_push(struct pat_ref_elt *elt, struct pattern_expr *expr,
|
||||
int patflags, char **err)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue