Validators work

This commit is contained in:
Vinnie Falco
2013-10-04 03:09:23 -07:00
parent 364973a523
commit 75f3c52d53
23 changed files with 665 additions and 524 deletions

View File

@@ -20,18 +20,11 @@
namespace ripple {
namespace Validators {
Source::Result::Result ()
Source::Results::Results ()
: success (false)
, message ("uninitialized")
{
}
void Source::Result::swapWith (Result& other)
{
std::swap (success, other.success);
std::swap (message, other.message);
list.swap (other.list);
}
}
}