]> git.notmuchmail.org Git - notmuch/blobdiff - lib/parse-time-vrp.cc
lib: run uncrustify
[notmuch] / lib / parse-time-vrp.cc
index 10809aa37453306ef9fc117c3d24f34fa52af581..22bf2ab5336980f8cbd9660e3ae4eb58bd7a9b97 100644 (file)
@@ -35,14 +35,14 @@ ParseTimeRangeProcessor::operator() (const std::string &begin, const std::string
     if (time (&now) == (time_t) -1)
        throw Xapian::QueryParserError ("unable to get current time");
 
-    if (!begin.empty ()) {
+    if (! begin.empty ()) {
        if (parse_time_string (begin.c_str (), &parsed_time, &now, PARSE_TIME_ROUND_DOWN))
            throw Xapian::QueryParserError ("Didn't understand date specification '" + begin + "'");
        else
            from = (double) parsed_time;
     }
 
-    if (!end.empty ()) {
+    if (! end.empty ()) {
        if (end == "!" && ! begin.empty ())
            str = begin;
        else