mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
New code style refactor
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
#include "CSegIdList.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
namespace urde {
|
||||
|
||||
CSegIdList::CSegIdList(CInputStream& in)
|
||||
{
|
||||
u32 count = in.readUint32Big();
|
||||
x0_list.reserve(count);
|
||||
for (u32 i=0 ; i<count ; ++i)
|
||||
x0_list.emplace_back(in);
|
||||
CSegIdList::CSegIdList(CInputStream& in) {
|
||||
u32 count = in.readUint32Big();
|
||||
x0_list.reserve(count);
|
||||
for (u32 i = 0; i < count; ++i)
|
||||
x0_list.emplace_back(in);
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace urde
|
||||
|
||||
Reference in New Issue
Block a user