diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-06-01 08:52:12 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-06-01 08:52:12 -0500 |
commit | 992b7ce30fa101f55314b89aa5bdf20881f5b43d (patch) | |
tree | 41562e1722533860750b064f214840578793ee5c /src/simplewallet | |
parent | Merge pull request #6582 (diff) | |
parent | Fix boost <1.60 compilation and fix boost 1.73+ warnings (diff) | |
download | monero-992b7ce30fa101f55314b89aa5bdf20881f5b43d.tar.xz |
Merge pull request #6612
7aeb503 Fix boost <1.60 compilation and fix boost 1.73+ warnings (vtnerd)
Diffstat (limited to '')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index b1e69161f..96fbf9967 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -33,6 +33,11 @@ * * \brief Source file that defines simple_wallet class. */ + +// use boost bind placeholders for now +#define BOOST_BIND_GLOBAL_PLACEHOLDERS 1 +#include <boost/bind.hpp> + #include <locale.h> #include <thread> #include <iostream> |