mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-08 21:06:51 +08:00
Indentation changes.
This commit is contained in:
10
mt/XThread.h
10
mt/XThread.h
@@ -10,12 +10,12 @@ class XThread { };
|
||||
// must not throw this type but must rethrow it if caught (by
|
||||
// XThreadExit, XThread, or ...).
|
||||
class XThreadExit : public XThread {
|
||||
public:
|
||||
XThreadExit(void* result) : m_result(result) { }
|
||||
~XThreadExit() { }
|
||||
public:
|
||||
XThreadExit(void* result) : m_result(result) { }
|
||||
~XThreadExit() { }
|
||||
|
||||
public:
|
||||
void* m_result;
|
||||
public:
|
||||
void* m_result;
|
||||
};
|
||||
|
||||
// thrown to cancel a thread. clients must not throw this type, but
|
||||
|
||||
Reference in New Issue
Block a user