Avoid leaving return types or function attributes on their own lines.

This commit is contained in:
Gregory Maxwell
2012-08-24 02:44:51 -04:00
parent 0050cf21ce
commit bdab0cf58c
6 changed files with 9 additions and 20 deletions

View File

@@ -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;