Cleanups and fixes.

This commit is contained in:
JoelKatz
2012-09-27 14:11:10 -07:00
parent c9b8408d08
commit a40120b6c9
9 changed files with 35 additions and 35 deletions

View File

@@ -202,7 +202,7 @@ STVector256* STVector256::construct(SerializerIterator& u, SField::ref name)
return new STVector256(name, value);
}
void STVector256::add(Serializer& s) const
void STVector256::addData(Serializer& s) const
{
s.addVL(mValue.empty() ? NULL : mValue[0].begin(), mValue.size() * (256 / 8));
}
@@ -427,7 +427,7 @@ std::string STPathSet::getText() const
}
#endif
void STPathSet::add(Serializer& s) const
void STPathSet::addData(Serializer& s) const
{
bool bFirst = true;