diff options
author | selsta <selsta@sent.at> | 2021-10-22 01:59:19 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-10-22 04:14:25 +0200 |
commit | e106bdc1fc3a9bb08837b05299088f3b6c4f66ba (patch) | |
tree | dae160d54601edd8cf3ce718c8fb8d111aa1ddec | |
parent | Merge pull request #8001 (diff) | |
download | monero-e106bdc1fc3a9bb08837b05299088f3b6c4f66ba.tar.xz |
epee: add missing header
-rw-r--r-- | contrib/epee/src/buffer.cpp | 1 | ||||
-rw-r--r-- | contrib/epee/src/wipeable_string.cpp | 1 | ||||
-rw-r--r-- | src/wallet/wallet_rpc_helpers.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/contrib/epee/src/buffer.cpp b/contrib/epee/src/buffer.cpp index 10ea6de56..cf94fb5d5 100644 --- a/contrib/epee/src/buffer.cpp +++ b/contrib/epee/src/buffer.cpp @@ -26,6 +26,7 @@ // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#include <limits> #include <string.h> #include "net/buffer.h" diff --git a/contrib/epee/src/wipeable_string.cpp b/contrib/epee/src/wipeable_string.cpp index 21312d49d..03cb05232 100644 --- a/contrib/epee/src/wipeable_string.cpp +++ b/contrib/epee/src/wipeable_string.cpp @@ -27,6 +27,7 @@ // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <boost/optional/optional.hpp> +#include <limits> #include <string.h> #include "memwipe.h" #include "misc_log_ex.h" diff --git a/src/wallet/wallet_rpc_helpers.h b/src/wallet/wallet_rpc_helpers.h index 35714db03..6f50b6727 100644 --- a/src/wallet/wallet_rpc_helpers.h +++ b/src/wallet/wallet_rpc_helpers.h @@ -28,6 +28,7 @@ #pragma once +#include <limits> #include <type_traits> namespace |