mirror of
https://github.com/luanti-org/luanti.git
synced 2025-11-29 12:15:18 +01:00
Pass clang-format on various cpp/header files (#5559)
This commit is contained in:
@@ -25,27 +25,25 @@ void NameIdMapping::serialize(std::ostream &os) const
|
||||
{
|
||||
writeU8(os, 0); // version
|
||||
writeU16(os, m_id_to_name.size());
|
||||
for(UNORDERED_MAP<u16, std::string>::const_iterator
|
||||
i = m_id_to_name.begin();
|
||||
i != m_id_to_name.end(); ++i){
|
||||
for (UNORDERED_MAP<u16, std::string>::const_iterator i = m_id_to_name.begin();
|
||||
i != m_id_to_name.end(); ++i) {
|
||||
writeU16(os, i->first);
|
||||
os<<serializeString(i->second);
|
||||
os << serializeString(i->second);
|
||||
}
|
||||
}
|
||||
|
||||
void NameIdMapping::deSerialize(std::istream &is)
|
||||
{
|
||||
int version = readU8(is);
|
||||
if(version != 0)
|
||||
if (version != 0)
|
||||
throw SerializationError("unsupported NameIdMapping version");
|
||||
u32 count = readU16(is);
|
||||
m_id_to_name.clear();
|
||||
m_name_to_id.clear();
|
||||
for(u32 i=0; i<count; i++){
|
||||
for (u32 i = 0; i < count; i++) {
|
||||
u16 id = readU16(is);
|
||||
std::string name = deSerializeString(is);
|
||||
m_id_to_name[id] = name;
|
||||
m_name_to_id[name] = id;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user