diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2017-09-01 09:29:06 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2017-09-01 09:29:06 +0200 |
commit | 3af4d83dfa190d8d95aefbf31ae0b1d85abe492a (patch) | |
tree | b2dfba4dfe8e91377101643cfcd3dd5a3940eac5 | |
parent | 2ca532122d60cff4dbdc7f24fbc5783bcc5ad68d (diff) | |
download | ble-toys-3af4d83dfa190d8d95aefbf31ae0b1d85abe492a.tar.gz ble-toys-3af4d83dfa190d8d95aefbf31ae0b1d85abe492a.tar.bz2 ble-toys-3af4d83dfa190d8d95aefbf31ae0b1d85abe492a.tar.xz ble-toys-3af4d83dfa190d8d95aefbf31ae0b1d85abe492a.zip |
o Adding missing include.
-rw-r--r-- | .gitmodules | 2 | ||||
-rw-r--r-- | include/ble/Bluetooth.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index a168a2f..f280b82 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "json"] path = json - url = https://github.com/nlohmann/json.git + url = https://github.com/nlohmann/json [submodule "gsl"] path = gsl url = https://github.com/Microsoft/GSL diff --git a/include/ble/Bluetooth.h b/include/ble/Bluetooth.h index f2b5b13..d5875a5 100644 --- a/include/ble/Bluetooth.h +++ b/include/ble/Bluetooth.h @@ -8,6 +8,7 @@ #include <vector> #include <cstdint> #include <map> +#include <functional> #include "ByteBuffer.h" |