run astyle

This commit is contained in:
Albert Medela
2017-08-16 13:55:18 +02:00
parent 94d87ed33e
commit 65e10c71b0
89 changed files with 888 additions and 488 deletions
+2 -1
View File
@@ -38,7 +38,8 @@ class ThreadStarter
{
public:
ThreadStarter(Thread &thread) : m_thread(thread) {}
void operator()() {
void operator()()
{
m_thread.MainWrapper();
}
+4 -2
View File
@@ -43,10 +43,12 @@ public:
PokerTHException(const char *sourcefile, int sourceline, int errorId, int osErrorCode);
virtual ~PokerTHException() throw();
int GetErrorId() const {
int GetErrorId() const
{
return m_errorId;
}
int GetOsErrorCode() const {
int GetOsErrorCode() const
{
return m_osErrorCode;
}