[PATCH v2 2/3] lib: Add support for automatically excluding tags from queries

2012-01-14 Thread Austin Clements
Quoth Jameson Graef Rollins on Jan 14 at 3:38 pm: > It looks like something in this patch is causing the following build > warning: > > CXX -O2 lib/query.o > lib/query.cc:26:8: warning: ?_notmuch_query? declared with greater visibility > than the type of its field > ?_notmuch_query::exclude_term

Re: [PATCH v2 2/3] lib: Add support for automatically excluding tags from queries

2012-01-14 Thread Austin Clements
Quoth Jameson Graef Rollins on Jan 14 at 3:38 pm: > It looks like something in this patch is causing the following build > warning: > > CXX -O2 lib/query.o > lib/query.cc:26:8: warning: ‘_notmuch_query’ declared with greater visibility > than the type of its field > ‘_notmuch_query::exclude_term

Re: [PATCH v2 2/3] lib: Add support for automatically excluding tags from queries

2012-01-14 Thread Jameson Graef Rollins
It looks like something in this patch is causing the following build warning: CXX -O2 lib/query.o lib/query.cc:26:8: warning: ‘_notmuch_query’ declared with greater visibility than the type of its field ‘_notmuch_query::exclude_terms’ [-Wattributes] However, I can't quite figure out what's causi

[PATCH v2 2/3] lib: Add support for automatically excluding tags from queries

2012-01-14 Thread Jameson Graef Rollins
It looks like something in this patch is causing the following build warning: CXX -O2 lib/query.o lib/query.cc:26:8: warning: ?_notmuch_query? declared with greater visibility than the type of its field ?_notmuch_query::exclude_terms? [-Wattributes] However, I can't quite figure out what's causi

[PATCH v2 2/3] lib: Add support for automatically excluding tags from queries

2012-01-13 Thread Austin Clements
This is useful for tags like "deleted" and "spam" that people generally want to exclude from query results. These exclusions will be overridden if a tag is explicitly mentioned in a query. --- lib/notmuch.h |6 ++ lib/query.cc | 35 +++ 2 files changed,

[PATCH v2 2/3] lib: Add support for automatically excluding tags from queries

2012-01-13 Thread Austin Clements
This is useful for tags like "deleted" and "spam" that people generally want to exclude from query results. These exclusions will be overridden if a tag is explicitly mentioned in a query. --- lib/notmuch.h |6 ++ lib/query.cc | 35 +++ 2 files changed,