Browse Source

Fix missing string header in streamer example

Paul-Louis Ageneau 2 years ago
parent
commit
f52541661f
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;