Sources: Run clang-format on everything.

This commit is contained in:
Emmanuel Gil Peyrot 2016-09-18 09:38:01 +09:00
parent fe948af095
commit dc8479928c
386 changed files with 19560 additions and 18080 deletions

View file

@ -28,13 +28,15 @@ class Interface : public Kernel::Session {
// just something that encapsulates a session and acts as a helper to implement service
// processes.
public:
std::string GetName() const override { return GetPortName(); }
std::string GetName() const override {
return GetPortName();
}
typedef void (*Function)(Interface*);
struct FunctionInfo {
u32 id;
Function func;
u32 id;
Function func;
const char* name;
};
@ -49,7 +51,6 @@ public:
ResultVal<bool> SyncRequest() override;
protected:
/**
* Registers the functions in the service
*/
@ -62,7 +63,6 @@ protected:
private:
boost::container::flat_map<u32, FunctionInfo> m_functions;
};
/// Initialize ServiceManager