Browse Source

Merge pull request #874 from paullouisageneau/fix-missing-header-example

Fix missing string header in streamer example
Paul-Louis Ageneau 2 years ago
parent
commit
10eed72add
1 changed files with 1 additions and 0 deletions
  1. 1 0
      examples/streamer/dispatchqueue.hpp

+ 1 - 0
examples/streamer/dispatchqueue.hpp

@@ -15,6 +15,7 @@
 #include <condition_variable>
 #include <queue>
 #include <functional>
+#include <string>
 
 class DispatchQueue {
     typedef std::function<void(void)> fp_t;