diff options
| author | danra <[email protected]> | 2017-08-26 13:20:36 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-26 13:20:36 +0300 |
| commit | 37c4362f22dc7a605a35194576e19fe5a23de0b0 (patch) | |
| tree | 9416e0345109b60bf61bf35e1878d4114acce760 /src | |
| parent | Merge #10976: [MOVEONLY] Move some static functions out of wallet.h/cpp (diff) | |
| download | discoin-37c4362f22dc7a605a35194576e19fe5a23de0b0.tar.xz discoin-37c4362f22dc7a605a35194576e19fe5a23de0b0.zip | |
Trivial: Documentation fixes for CVectorWriter ctors
Diffstat (limited to 'src')
| -rw-r--r-- | src/streams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streams.h b/src/streams.h index a3fc91971..159847279 100644 --- a/src/streams.h +++ b/src/streams.h @@ -82,7 +82,7 @@ class CVectorWriter * @param[in] nVersionIn Serialization Version (including any flags) * @param[in] vchDataIn Referenced byte vector to overwrite/append * @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) { @@ -91,7 +91,7 @@ class CVectorWriter } /* * (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> CVectorWriter(int nTypeIn, int nVersionIn, std::vector<unsigned char>& vchDataIn, size_t nPosIn, Args&&... args) : CVectorWriter(nTypeIn, nVersionIn, vchDataIn, nPosIn) |