mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-27 10:52:59 +00:00
Convert serialization code to use less virtuals and allow more inlining.
This was SVN commit r7582.
This commit is contained in:
@@ -140,7 +140,7 @@ void CDebugSerializer::PutScriptVal(const char* name, jsval value)
|
||||
m_Stream << INDENT << name << ": " << source << "\n";
|
||||
}
|
||||
|
||||
void CDebugSerializer::Put(const char* name, const u8* data, size_t len)
|
||||
void CDebugSerializer::PutRaw(const char* name, const u8* data, size_t len)
|
||||
{
|
||||
m_Stream << INDENT << name << ": (" << len << " bytes)";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user