-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: apply patch to event bus library
Due to missing header file, event bus library can't be compiled with our toolchain. This is a termporary solution while it's fixed upstream.
- Loading branch information
1 parent
497309a
commit 8556a9c
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/lib/src/dexode/eventbus/stream/ProtectedEventStream.hpp b/lib/src/dexode/eventbus/stream/ProtectedEventStream.hpp | ||
index b6c0eda..21c10d9 100644 | ||
--- a/lib/src/dexode/eventbus/stream/ProtectedEventStream.hpp | ||
+++ b/lib/src/dexode/eventbus/stream/ProtectedEventStream.hpp | ||
@@ -4,6 +4,7 @@ | ||
#include <cassert> | ||
#include <functional> | ||
#include <iterator> | ||
+#include <mutex> | ||
#include <shared_mutex> | ||
#include <vector> | ||
|