refactor(Core/Common): restyle common lib with astyle (#3461)

This commit is contained in:
Kargatum
2020-09-12 03:50:48 +07:00
committed by GitHub
parent e15a493927
commit 3a0b0356ac
101 changed files with 4524 additions and 4418 deletions

View File

@@ -12,9 +12,9 @@
namespace acore
{
/// Handle termination signals
class SignalHandler : public ACE_Event_Handler
{
/// Handle termination signals
class SignalHandler : public ACE_Event_Handler
{
public:
int handle_signal(int SigNum, siginfo_t* = NULL, ucontext_t* = NULL)
{
@@ -22,7 +22,7 @@ class SignalHandler : public ACE_Event_Handler
return 0;
}
virtual void HandleSignal(int /*SigNum*/) { };
};
};
}