run astyle
This commit is contained in:
@@ -38,7 +38,8 @@ class ThreadStarter
|
||||
{
|
||||
public:
|
||||
ThreadStarter(Thread &thread) : m_thread(thread) {}
|
||||
void operator()() {
|
||||
void operator()()
|
||||
{
|
||||
m_thread.MainWrapper();
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user