mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 07:28:59 +01:00
Avoid leaving return types or function attributes on their own lines.
This commit is contained in:
@@ -319,9 +319,7 @@ public:
|
||||
typedef std::map<std::string, std::string> mapValue_t;
|
||||
|
||||
|
||||
static
|
||||
void
|
||||
ReadOrderPos(int64& nOrderPos, mapValue_t& mapValue)
|
||||
static void ReadOrderPos(int64& nOrderPos, mapValue_t& mapValue)
|
||||
{
|
||||
if (!mapValue.count("n"))
|
||||
{
|
||||
@@ -332,9 +330,7 @@ ReadOrderPos(int64& nOrderPos, mapValue_t& mapValue)
|
||||
}
|
||||
|
||||
|
||||
static
|
||||
void
|
||||
WriteOrderPos(const int64& nOrderPos, mapValue_t& mapValue)
|
||||
static void WriteOrderPos(const int64& nOrderPos, mapValue_t& mapValue)
|
||||
{
|
||||
if (nOrderPos == -1)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user