Skip to content

Commit

Permalink
Update mu-store-worker.hh, remove duplicate ;
Browse files Browse the repository at this point in the history
Fix gcc warning:
```
mu4e                           pre-build              [26/198] Compiling C++ object lib/libmu.a.p/mu-query-parser.cc.o               34.390111
mu4e                           pre-build              In file included from ../lib/mu-store.hh:34,                                   34.390132
mu4e                           pre-build                               from ../lib/mu-query-parser.hh:25,                            34.390140
mu4e                           pre-build                               from ../lib/mu-query-parser.cc:20:                            34.390146
mu4e                           pre-build              ../lib/mu-store-worker.hh:162:23: warning: extra ‘;’ [-Wpedantic]              34.390152
mu4e                           pre-build                162 |         Store& store_;;                                                34.390166
mu4e                           pre-build                    |                       ^                                                34.390172
mu4e                           pre-build                    |                       -                                                34.390177
mu4e                           pre-build              [27/198] Compiling C++ object lib/libmu.a.p/mu-contacts-cache.cc.o             34.538682
```
  • Loading branch information
eval-exec authored Aug 8, 2024
1 parent e6c32f6 commit d742623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mu-store-worker.hh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private:
size_t cleanup_orphans();

QueueType q_;
Store& store_;;
Store& store_;
std::thread runner_;
std::atomic<bool> running_{};
SexpCommandHandler sexp_handler_{};
Expand Down

0 comments on commit d742623

Please sign in to comment.