Reformatting using AStyle

This commit is contained in:
Vinnie Falco
2013-06-14 08:45:13 -07:00
parent 36bd8f7173
commit 521e812fc4
294 changed files with 54609 additions and 47598 deletions

View File

@@ -1,21 +1,21 @@
std::ostream& operator<<(std::ostream& out, const SHAMapMissingNode& mn)
std::ostream& operator<< (std::ostream& out, const SHAMapMissingNode& mn)
{
switch (mn.getMapType ())
{
case smtTRANSACTION:
out << "Missing/TXN(" << mn.getNodeID() << "/" << mn.getNodeHash() << ")";
out << "Missing/TXN(" << mn.getNodeID () << "/" << mn.getNodeHash () << ")";
break;
case smtSTATE:
out << "Missing/STA(" << mn.getNodeID() << "/" << mn.getNodeHash() << ")";
out << "Missing/STA(" << mn.getNodeID () << "/" << mn.getNodeHash () << ")";
break;
case smtFREE:
default:
out << "Missing/" << mn.getNodeID();
out << "Missing/" << mn.getNodeID ();
break;
};
return out;
return out;
}