diff options
author | Gregory Maxwell <greg@xiph.org> | 2012-08-24 02:44:51 -0400 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2012-08-24 02:48:19 -0400 |
commit | bdab0cf58c2ac1b90ba2723e8f9ddc1817b3d811 (patch) | |
tree | d7b42a24e6c194d7b9a86a2d27dd320b9d1b02d2 /src/wallet.h | |
parent | 0050cf21ce2a3a3c032817e661f813ccaf25f430 (diff) |
Avoid leaving return types or function attributes on their own lines.
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/wallet.h b/src/wallet.h index 69badaf10d..7205279711 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -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; |