diff --git a/Library/Library.vcxproj b/Library/Library.vcxproj
index 92be3840..c5b17289 100644
--- a/Library/Library.vcxproj
+++ b/Library/Library.vcxproj
@@ -787,13 +787,11 @@
-
-
diff --git a/Library/Library.vcxproj.filters b/Library/Library.vcxproj.filters
index 7fd62ffb..597cc339 100644
--- a/Library/Library.vcxproj.filters
+++ b/Library/Library.vcxproj.filters
@@ -168,9 +168,6 @@
Lua\Lua
-
- Lua\Lua
-
Lua\Lua
@@ -186,9 +183,6 @@
Lua\Lua
-
- Lua\Lua
-
Lua\Lua
diff --git a/Library/lua/LuaManager.cpp b/Library/lua/LuaManager.cpp
index c73abca5..074abb57 100644
--- a/Library/lua/LuaManager.cpp
+++ b/Library/lua/LuaManager.cpp
@@ -43,8 +43,7 @@ void LuaManager::Initialize()
{ NULL, NULL }
};
- const luaL_Reg* lib = lualibs;
- for (; lib->func; lib++)
+ for (const luaL_Reg* lib = lualibs; lib->func; ++lib)
{
lua_pushcfunction(c_State, lib->func);
lua_pushstring(c_State, lib->name);