clang-format fixes

This commit is contained in:
Hamish Milne
2020-02-13 17:39:15 +08:00
committed by zhupengfei
parent d482fb359c
commit 7b846ffa98
117 changed files with 797 additions and 925 deletions
+4 -7
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