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_variables/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/MirLua/Modules/m_variables') diff --git a/plugins/MirLua/Modules/m_variables/src/main.cpp b/plugins/MirLua/Modules/m_variables/src/main.cpp index a9c5204f96..dcd2a7e773 100644 --- a/plugins/MirLua/Modules/m_variables/src/main.cpp +++ b/plugins/MirLua/Modules/m_variables/src/main.cpp @@ -11,7 +11,7 @@ static int lua_Parse(lua_State *L) ptrW format(mir_utf8decodeW(luaL_checkstring(L, 1))); MCONTACT hContact = lua_tointeger(L, 2); - wchar_t *res = variables_parse_ex(format, NULL, hContact, NULL, 0); + wchar_t *res = variables_parse_ex(format, nullptr, hContact, nullptr, 0); lua_pushstring(L, T2Utf(res)); return 1; @@ -21,7 +21,7 @@ static luaL_Reg variablesApi[] = { { "Parse", lua_Parse }, - { NULL, NULL } + { nullptr, nullptr } }; extern "C" LUAMOD_API int luaopen_m_variables(lua_State *L) -- cgit v1.2.3