From 7d49df398538208f93fdb8b7e23d7ef87b7a69b4 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Mon, 11 Nov 2013 17:46:39 -0800 Subject: [PATCH] style(lua): fix cpplint.py warnings Signed-off-by: Leonardo de Moura --- src/bindings/lua/leanlua_state.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bindings/lua/leanlua_state.h b/src/bindings/lua/leanlua_state.h index bac30a2b7..b88bc27cc 100644 --- a/src/bindings/lua/leanlua_state.h +++ b/src/bindings/lua/leanlua_state.h @@ -18,9 +18,9 @@ class leanlua_state { struct imp; std::shared_ptr 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();