Skip to content

Commit

Permalink
Merge pull request #152 from Jongjan88/develop
Browse files Browse the repository at this point in the history
include headers: stdexcept && cstdint
  • Loading branch information
JaredTate committed Dec 27, 2023
2 parents 49696b3 + 67935b6 commit 1c2c656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/support/lockedpool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#endif

#include <algorithm>
#include <stdexcept>
#ifdef ARENA_DEBUG
#include <iomanip>
#include <iostream>
Expand Down
1 change: 1 addition & 0 deletions src/util/bip32.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <attributes.h>
#include <string>
#include <vector>
#include <cstdint>

/** Parse an HD keypaths like "m/7/0'/2000". */
[[nodiscard]] bool ParseHDKeypath(const std::string& keypath_str, std::vector<uint32_t>& keypath);
Expand Down
1 change: 1 addition & 0 deletions src/util/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <sstream>
#include <string>
#include <vector>
#include <cstdint>

[[nodiscard]] inline std::string TrimString(const std::string& str, const std::string& pattern = " \f\n\r\t\v")
{
Expand Down

0 comments on commit 1c2c656

Please sign in to comment.