From a7c24ca48995cf2bf436156302f96b91bf135409 Mon Sep 17 00:00:00 2001 From: Goraf <22941576+Goraf@users.noreply.github.com> Date: Mon, 13 Nov 2017 15:03:31 +0100 Subject: Code modernize ... * replace 0/NULL with nullptr [using clang-tidy] --- plugins/MirLua/Modules/m_popup/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/MirLua/Modules/m_popup') diff --git a/plugins/MirLua/Modules/m_popup/src/main.cpp b/plugins/MirLua/Modules/m_popup/src/main.cpp index 62d6bfb43b..35f2b9bb28 100644 --- a/plugins/MirLua/Modules/m_popup/src/main.cpp +++ b/plugins/MirLua/Modules/m_popup/src/main.cpp @@ -35,7 +35,7 @@ static int lua_AddPopup(lua_State *L) { if (lua_type(L, 1) != LUA_TTABLE) { - lua_pushlightuserdata(L, 0); + lua_pushlightuserdata(L, nullptr); return 1; } @@ -98,7 +98,7 @@ static int lua_AddPopup2(lua_State *L) { if (lua_type(L, 1) != LUA_TTABLE) { - lua_pushlightuserdata(L, 0); + lua_pushlightuserdata(L, nullptr); return 1; } @@ -118,7 +118,7 @@ static luaL_Reg popupApi[] = { "AddPopup", lua_AddPopup }, { "AddPopup2", lua_AddPopup2 }, - { NULL, NULL } + { nullptr, nullptr } }; extern "C" LUAMOD_API int luaopen_m_popup(lua_State *L) -- cgit v1.2.3