Skip to content

Commit

Permalink
lib-fts: Add max_length to common filter struct. Reorder fields.
Browse files Browse the repository at this point in the history
The latter is for for imaginary alignment enhancements.
  • Loading branch information
thuovila authored and sirainen committed Aug 23, 2016
1 parent cc8e8c4 commit 6b34eef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib-fts/fts-filter-private.h
Expand Up @@ -26,9 +26,10 @@ struct fts_filter_vfuncs {
struct fts_filter {
const char *class_name; /* name of the class this is based on */
struct fts_filter_vfuncs v;
int refcount;
struct fts_filter *parent;
string_t *token;
size_t max_length;
int refcount;
};

#endif

0 comments on commit 6b34eef

Please sign in to comment.