Dear all
BinaryWriter has a number of methods that differ only in type.
writeUInt32, writeInt32, writeUInt16 etc..
One C++ idiom is to let the compiler write these versions with template member functions….
Here is the patch that does this and as a result a lot of repetitive functions get eliminated…
The advantage is if we change some class member from char to int, this change is automatically propogated…. So we do not have to go manually and change things..
Let me know….
— cheers atul
Attached Files:
mychanges.diff 14K
