clang-format fixes

This commit is contained in:
Hamish Milne
2019-12-27 21:07:29 +00:00
committed by zhupengfei
parent d482fb359c
commit 7b846ffa98
117 changed files with 797 additions and 925 deletions

View File

@ -87,18 +87,15 @@ u16 GetResolutionScaleFactor() {
}
}
void Save(std::ostream &stream)
{
void Save(std::ostream& stream) {
oarchive oa{stream};
oa & Pica::g_state;
oa& Pica::g_state;
}
void Load(std::istream &stream)
{
void Load(std::istream& stream) {
iarchive ia{stream};
ia & Pica::g_state;
ia& Pica::g_state;
// TODO: Flush/reset things
}
} // namespace VideoCore