mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Trivial: Documentation fixes for CVectorWriter ctors
This commit is contained in:
parent
07c92b98e2
commit
37c4362f22
@ -82,7 +82,7 @@ class CVectorWriter
|
|||||||
* @param[in] nVersionIn Serialization Version (including any flags)
|
* @param[in] nVersionIn Serialization Version (including any flags)
|
||||||
* @param[in] vchDataIn Referenced byte vector to overwrite/append
|
* @param[in] vchDataIn Referenced byte vector to overwrite/append
|
||||||
* @param[in] nPosIn Starting position. Vector index where writes should start. The vector will initially
|
* @param[in] nPosIn Starting position. Vector index where writes should start. The vector will initially
|
||||||
* grow as necessary to max(index, vec.size()). So to append, use vec.size().
|
* grow as necessary to max(nPosIn, vec.size()). So to append, use vec.size().
|
||||||
*/
|
*/
|
||||||
CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn) : nType(nTypeIn), nVersion(nVersionIn), vchData(vchDataIn), nPos(nPosIn)
|
CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn) : nType(nTypeIn), nVersion(nVersionIn), vchData(vchDataIn), nPos(nPosIn)
|
||||||
{
|
{
|
||||||
@ -91,7 +91,7 @@ class CVectorWriter
|
|||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* (other params same as above)
|
* (other params same as above)
|
||||||
* @param[in] args A list of items to serialize starting at nPos.
|
* @param[in] args A list of items to serialize starting at nPosIn.
|
||||||
*/
|
*/
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn, Args&&... args) : CVectorWriter(nTypeIn, nVersionIn, vchDataIn, nPosIn)
|
CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn, Args&&... args) : CVectorWriter(nTypeIn, nVersionIn, vchDataIn, nPosIn)
|
||||||
|
Loading…
Reference in New Issue
Block a user