writeVal not a template function

This commit is contained in:
Jack Andersen 2015-10-15 17:06:12 -10:00
parent 25de226e65
commit ffca1f1897
1 changed files with 1 additions and 1 deletions

View File

@ -1068,7 +1068,7 @@ protected:
template <typename T>
IStreamWriter& operator<<(IStreamWriter& lhs, const T& rhs)
{
lhs.writeVal<T>(rhs);
lhs.writeVal(rhs);
return lhs;
}
}