index: wait with cleanup until work-queue is empty

This commit is contained in:
Dirk-Jan C. Binnema
2021-01-15 21:05:00 +02:00
parent bcd96d8a1e
commit a3865d6ba9
2 changed files with 21 additions and 4 deletions

View File

@ -65,7 +65,7 @@ public:
~Scanner();
/**
* Start the scan; this is a blocking call than run until
* Start the scan; this is a blocking call than runs until
* finished or (from another thread) stop() is called.
*
* @return true if starting worked; false otherwise
@ -87,8 +87,8 @@ public:
bool is_running() const;
private:
struct Private;
std::unique_ptr<Private> priv_;
struct Private;
std::unique_ptr<Private> priv_;
};
} // namespace Mu