refactor: Remove unused CDataStream SerializeMany constructor

This commit is contained in:
MarcoFalke
2023-01-30 13:12:51 +01:00
parent 37fea41bbf
commit fa47b28dfc
2 changed files with 2 additions and 9 deletions

View File

@@ -358,14 +358,6 @@ public:
nType{nTypeIn},
nVersion{nVersionIn} {}
template <typename... Args>
CDataStream(int nTypeIn, int nVersionIn, Args&&... args)
: nType{nTypeIn},
nVersion{nVersionIn}
{
::SerializeMany(*this, std::forward<Args>(args)...);
}
int GetType() const { return nType; }
void SetVersion(int n) { nVersion = n; }
int GetVersion() const { return nVersion; }