mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
Declare wallet.h functions inline
This commit is contained in:
parent
c9bdf9a75f
commit
2ca882ad41
1 changed files with 2 additions and 2 deletions
|
@ -134,7 +134,7 @@ struct CRecipient
|
||||||
typedef std::map<std::string, std::string> mapValue_t;
|
typedef std::map<std::string, std::string> mapValue_t;
|
||||||
|
|
||||||
|
|
||||||
static void ReadOrderPos(int64_t& nOrderPos, mapValue_t& mapValue)
|
static inline void ReadOrderPos(int64_t& nOrderPos, mapValue_t& mapValue)
|
||||||
{
|
{
|
||||||
if (!mapValue.count("n"))
|
if (!mapValue.count("n"))
|
||||||
{
|
{
|
||||||
|
@ -145,7 +145,7 @@ static void ReadOrderPos(int64_t& nOrderPos, mapValue_t& mapValue)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void WriteOrderPos(const int64_t& nOrderPos, mapValue_t& mapValue)
|
static inline void WriteOrderPos(const int64_t& nOrderPos, mapValue_t& mapValue)
|
||||||
{
|
{
|
||||||
if (nOrderPos == -1)
|
if (nOrderPos == -1)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue