]> git.notmuchmail.org Git - notmuch/blobdiff - lib/query-fp.h
lib: run uncrustify
[notmuch] / lib / query-fp.h
index d6e4b31394f4f8eef3d3eebd9ee6b704be26284f..8a8bde62a7977d5e63622a90fc835373b70bb4f2 100644 (file)
 
 #if HAVE_XAPIAN_FIELD_PROCESSOR
 class QueryFieldProcessor : public Xapian::FieldProcessor {
- protected:
+protected:
     Xapian::QueryParser &parser;
     notmuch_database_t *notmuch;
 
- public:
+public:
     QueryFieldProcessor (Xapian::QueryParser &parser_, notmuch_database_t *notmuch_)
-       : parser(parser_), notmuch(notmuch_) { };
+       : parser (parser_), notmuch (notmuch_)
+    {
+    };
 
-    Xapian::Query operator()(const std::string & str);
+    Xapian::Query operator() (const std::string & str);
 };
 #endif
 #endif /* NOTMUCH_QUERY_FP_H */