style(lua): fix cpplint.py warnings
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
d4e515f38e
commit
7d49df3985
1 changed files with 3 additions and 3 deletions
|
@ -18,9 +18,9 @@ class leanlua_state {
|
|||
struct imp;
|
||||
std::shared_ptr<imp> m_ptr;
|
||||
friend class leanlua_thread;
|
||||
friend int state_dostring(lua_State *);
|
||||
friend int mk_thread(lua_State *);
|
||||
friend int thread_wait(lua_State *);
|
||||
friend int state_dostring(lua_State * L);
|
||||
friend int mk_thread(lua_State * L);
|
||||
friend int thread_wait(lua_State * L);
|
||||
public:
|
||||
leanlua_state();
|
||||
~leanlua_state();
|
||||
|
|
Loading…
Reference in a new issue