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

@ -23,9 +23,10 @@ public:
protected:
std::shared_ptr<Module> act;
};
private:
template <class Archive>
inline void serialize(Archive& ar, const unsigned int file_version) { }
inline void serialize(Archive& ar, const unsigned int file_version) {}
friend class boost::serialization::access;
};

View file

@ -2,8 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/act/act_a.h"
#include "common/archives.h"
#include "core/hle/service/act/act_a.h"
namespace Service::ACT {

View file

@ -11,6 +11,7 @@ namespace Service::ACT {
class ACT_A final : public Module::Interface {
public:
explicit ACT_A(std::shared_ptr<Module> act);
private:
SERVICE_SERIALIZATION(ACT_A, act, Module)
};

View file

@ -2,8 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/act/act_u.h"
#include "common/archives.h"
#include "core/hle/service/act/act_u.h"
namespace Service::ACT {

View file

@ -11,6 +11,7 @@ namespace Service::ACT {
class ACT_U final : public Module::Interface {
public:
explicit ACT_U(std::shared_ptr<Module> act);
private:
SERVICE_SERIALIZATION(ACT_U, act, Module)
};