diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-05 16:11:36 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-06-16 15:15:46 -0400 |
commit | fa193c6b1b7da8f72a399bfddb1497655ce1685c (patch) | |
tree | 0123bb699d40d2de7fb9e5f9457825f2d4d2209b /src/interfaces | |
parent | fa09ec83f3f23dacb807c6b6393cabf2a984e4ff (diff) |
Add missing includes to fix compile errors
fs.cpp:35:17: error: no member named 'strerror' in namespace 'std'
return std::strerror(errno);
~~~~~^
fs.cpp:49:9: error: use of undeclared identifier 'close'
close(fd);
^
2 errors generated.
./interfaces/chain.h:265:55: error: ‘std::function’ has not been declared
virtual void rpcRunLater(const std::string& name, std::function<void()> fn, int64_t seconds) = 0;
^~~
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/chain.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h index 61d7ddb934..65695707f7 100644 --- a/src/interfaces/chain.h +++ b/src/interfaces/chain.h @@ -8,6 +8,7 @@ #include <optional.h> // For Optional and nullopt #include <primitives/transaction.h> // For CTransactionRef +#include <functional> #include <memory> #include <stddef.h> #include <stdint.h> |