aboutsummaryrefslogtreecommitdiff
path: root/src/lua/modules/thread/je_lua_thread.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-12-14 14:55:42 +0800
committerchai <chaifix@163.com>2018-12-14 14:55:42 +0800
commit870fcdae66edc680cac55defb149e1434e865f37 (patch)
treebb0b45627b98ec4c782466b3bb57daf63c44e460 /src/lua/modules/thread/je_lua_thread.h
parenteb8ca083c9be574acd27cf0de41d1f69146cad7a (diff)
*格式化代码
Diffstat (limited to 'src/lua/modules/thread/je_lua_thread.h')
-rw-r--r--src/lua/modules/thread/je_lua_thread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lua/modules/thread/je_lua_thread.h b/src/lua/modules/thread/je_lua_thread.h
index 9978d35..acb4c49 100644
--- a/src/lua/modules/thread/je_lua_thread.h
+++ b/src/lua/modules/thread/je_lua_thread.h
@@ -21,10 +21,10 @@ namespace JinEngine
thread = new JinEngine::Threads::Thread(_name, runner);
}
- ~Thread()
- {
- delete thread;
- }
+ ~Thread()
+ {
+ delete thread;
+ }
bool start(void* p)
{
@@ -84,7 +84,7 @@ namespace JinEngine
const std::string name;
const std::string code;
- private:
+ private:
JinEngine::Threads::Thread* thread;
};