diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-02-20 15:38:43 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-02-20 15:38:43 +0000 |
commit | 0eb4d054f6821ac76d3bb049b04ac32835beae97 (patch) | |
tree | 1607a2f7be4a6181311428282432d76bbe1fcd53 /src | |
parent | Merge pull request #680 (diff) | |
download | monero-0eb4d054f6821ac76d3bb049b04ac32835beae97.tar.xz |
db_bdb: add missing include for std::condition_variable
Diffstat (limited to 'src')
-rw-r--r-- | src/blockchain_db/berkeleydb/db_bdb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blockchain_db/berkeleydb/db_bdb.h b/src/blockchain_db/berkeleydb/db_bdb.h index 42119da93..aee160fa6 100644 --- a/src/blockchain_db/berkeleydb/db_bdb.h +++ b/src/blockchain_db/berkeleydb/db_bdb.h @@ -31,6 +31,7 @@ #include "cryptonote_protocol/blobdatatype.h" // for type blobdata #include <unordered_map> +#include <condition_variable> // ND: Enables multi-threaded bulk reads for when getting indices. // TODO: Disabled for now, as it doesn't seem to provide noticeable improvements (??. Reason: TBD. |