Skip to content

Commit

Permalink
LINT: Add files to whitelist, fix detected indent errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Nov 6, 2017
1 parent 4c40e07 commit 179476d
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 23 deletions.
6 changes: 3 additions & 3 deletions src/client/render/core.cpp
Expand Up @@ -26,9 +26,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "minimap.h"

RenderingCore::RenderingCore(IrrlichtDevice *_device, Client *_client, Hud *_hud)
: device(_device), driver(device->getVideoDriver()), smgr(device->getSceneManager()),
guienv(device->getGUIEnvironment()), client(_client), camera(client->getCamera()),
mapper(client->getMinimap()), hud(_hud)
: device(_device), driver(device->getVideoDriver()), smgr(device->getSceneManager()),
guienv(device->getGUIEnvironment()), client(_client), camera(client->getCamera()),
mapper(client->getMinimap()), hud(_hud)
{
screensize = driver->getScreenSize();
virtual_size = screensize;
Expand Down
4 changes: 2 additions & 2 deletions src/client/render/interlaced.cpp
Expand Up @@ -24,8 +24,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "client/tile.h"

RenderingCoreInterlaced::RenderingCoreInterlaced(
IrrlichtDevice *_device, Client *_client, Hud *_hud)
: RenderingCoreStereo(_device, _client, _hud)
IrrlichtDevice *_device, Client *_client, Hud *_hud)
: RenderingCoreStereo(_device, _client, _hud)
{
initMaterial();
}
Expand Down
4 changes: 2 additions & 2 deletions src/client/render/plain.cpp
Expand Up @@ -27,8 +27,8 @@ inline u32 scaledown(u32 coef, u32 size)
}

RenderingCorePlain::RenderingCorePlain(
IrrlichtDevice *_device, Client *_client, Hud *_hud)
: RenderingCore(_device, _client, _hud)
IrrlichtDevice *_device, Client *_client, Hud *_hud)
: RenderingCore(_device, _client, _hud)
{
scale = g_settings->getU16("undersampling");
}
Expand Down
4 changes: 2 additions & 2 deletions src/client/render/sidebyside.cpp
Expand Up @@ -23,8 +23,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "hud.h"

RenderingCoreSideBySide::RenderingCoreSideBySide(
IrrlichtDevice *_device, Client *_client, Hud *_hud, bool _horizontal)
: RenderingCoreStereo(_device, _client, _hud), horizontal(_horizontal)
IrrlichtDevice *_device, Client *_client, Hud *_hud, bool _horizontal)
: RenderingCoreStereo(_device, _client, _hud), horizontal(_horizontal)
{
}

Expand Down
4 changes: 2 additions & 2 deletions src/client/render/stereo.cpp
Expand Up @@ -24,8 +24,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "settings.h"

RenderingCoreStereo::RenderingCoreStereo(
IrrlichtDevice *_device, Client *_client, Hud *_hud)
: RenderingCore(_device, _client, _hud)
IrrlichtDevice *_device, Client *_client, Hud *_hud)
: RenderingCore(_device, _client, _hud)
{
eye_offset = BS * g_settings->getFloat("3d_paralax_strength");
}
Expand Down
37 changes: 25 additions & 12 deletions util/travis/clang-format-whitelist.txt
Expand Up @@ -3,26 +3,32 @@ src/ban.cpp
src/camera.cpp
src/camera.h
src/cavegen.cpp
src/cavegen.h
src/chat.cpp
src/chat.h
src/chat_interface.h
src/client/clientlauncher.cpp
src/client/clientlauncher.h
src/client.cpp
src/client.h
src/clientenvironment.cpp
src/clientenvironment.h
src/client.h
src/clientiface.cpp
src/clientiface.h
src/client/joystick_controller.cpp
src/client/joystick_controller.h
src/client/renderingengine.cpp
src/clientmap.cpp
src/clientmap.h
src/clientmedia.cpp
src/clientmedia.h
src/clientobject.cpp
src/clientobject.h
src/client/clientlauncher.cpp
src/client/clientlauncher.h
src/client/joystick_controller.cpp
src/client/joystick_controller.h
src/client/renderingengine.cpp
src/client/render/core.cpp
src/client/render/interlaced.cpp
src/client/render/plain.cpp
src/client/render/sidebyside.cpp
src/client/render/stereo.cpp
src/client/tile.cpp
src/client/tile.h
src/clouds.cpp
Expand Down Expand Up @@ -74,8 +80,8 @@ src/filesys.h
src/fontengine.cpp
src/fontengine.h
src/game.cpp
src/gamedef.h
src/game.h
src/gamedef.h
src/genericobject.cpp
src/genericobject.h
src/gettext.cpp
Expand Down Expand Up @@ -131,21 +137,25 @@ src/mapblock.h
src/mapblock_mesh.cpp
src/mapblock_mesh.h
src/map.cpp
src/map.h
src/mapgen.cpp
src/mapgen.h
src/mapgen_carpathian.cpp
src/mapgen_carpathian.h
src/mapgen_flat.cpp
src/mapgen_flat.h
src/mapgen_fractal.cpp
src/mapgen.h
src/mapgen_fractal.h
src/mapgen_singlenode.cpp
src/mapgen_singlenode.h
src/mapgen_v5.cpp
src/mapgen_v5.h
src/mapgen_v6.cpp
src/mapgen_v6.h
src/mapgen_v7.cpp
src/mapgen_v7.h
src/mapgen_valleys.cpp
src/mapgen_valleys.h
src/map.h
src/mapnode.cpp
src/mapnode.h
src/mapsector.cpp
Expand Down Expand Up @@ -267,6 +277,7 @@ src/script/lua_api/l_localplayer.cpp
src/script/lua_api/l_mainmenu.cpp
src/script/lua_api/l_mainmenu.h
src/script/lua_api/l_mapgen.cpp
src/script/lua_api/l_mapgen.h
src/script/lua_api/l_metadata.cpp
src/script/lua_api/l_minimap.cpp
src/script/lua_api/l_nodemeta.cpp
Expand Down Expand Up @@ -294,9 +305,11 @@ src/script/scripting_server.h
src/serialization.cpp
src/serialization.h
src/server.cpp
src/server.h
src/serveractiveobjectmap.cpp
src/serveractiveobjectmap.h
src/serverenvironment.cpp
src/serverenvironment.h
src/server.h
src/serverlist.cpp
src/serverlist.h
src/serverobject.cpp
Expand Down Expand Up @@ -332,13 +345,13 @@ src/touchscreengui.cpp
src/translation.cpp
src/treegen.cpp
src/treegen.h
src/unittest/test.cpp
src/unittest/test.h
src/unittest/test_areastore.cpp
src/unittest/test_collision.cpp
src/unittest/test_compression.cpp
src/unittest/test_connection.cpp
src/unittest/test.cpp
src/unittest/test_filepath.cpp
src/unittest/test.h
src/unittest/test_inventory.cpp
src/unittest/test_keycode.cpp
src/unittest/test_map_settings_manager.cpp
Expand Down

0 comments on commit 179476d

Please sign in to comment.