Validators update, add LeakChecked to Source subclasses

This commit is contained in:
Vinnie Falco
2013-10-03 15:54:36 -07:00
parent 06189b2584
commit a1b958eaac
19 changed files with 18 additions and 27 deletions

View File

@@ -17,7 +17,6 @@
*/
//==============================================================================
#ifndef RIPPLE_VALIDATORS_SOURCEDESC_H_INCLUDED
#define RIPPLE_VALIDATORS_SOURCEDESC_H_INCLUDED
@@ -34,7 +33,7 @@ struct SourceDesc
statusFailed
};
ScopedPointer <Source> source;
SharedPtr <Source> source;
Status status;
Time whenToFetch;
int numberOfFailures;
@@ -64,7 +63,7 @@ struct SourceDesc
}
};
typedef DynamicList <SourceDesc> SourcesType;
typedef std::vector <SourceDesc> SourcesType;
}
}