mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Missing constructor.
This commit is contained in:
@@ -31,7 +31,7 @@ protected:
|
|||||||
boost::ptr_vector<SerializedType> data;
|
boost::ptr_vector<SerializedType> data;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
STUObject() : type(NULL) { ; }
|
STUObject(const char *n=NULL) : SerializedType(n), type(NULL) { ; }
|
||||||
STUObject(SOType *t) : type(t) { ; }
|
STUObject(SOType *t) : type(t) { ; }
|
||||||
STUObject(SOType *t, SerializerIterator& u);
|
STUObject(SOType *t, SerializerIterator& u);
|
||||||
virtual ~STUObject() { ; }
|
virtual ~STUObject() { ; }
|
||||||
|
|||||||
Reference in New Issue
Block a user