godot/modules
Rémi Verschelde cda5b0bfe1 Fix warnings about unused variables [-Wunused-variable]
Fixes the following GCC 5 warnings:
```
drivers/gles2/rasterizer_scene_gles2.cpp:1139:15: warning: unused variable 'offset' [-Wunused-variable]
drivers/gles2/rasterizer_scene_gles2.cpp:1205:39: warning: unused variable 'multi_mesh' [-Wunused-variable]
drivers/gles2/rasterizer_storage_gles2.cpp:359:7: warning: unused variable 'srgb' [-Wunused-variable]
drivers/gles2/shader_gles2.cpp:1016:45: warning: unused variable 'texture_hints' [-Wunused-variable]
editor/animation_track_editor.cpp:776:9: warning: unused variable 'keys_to' [-Wunused-variable]
editor/editor_inspector.cpp:273:7: warning: unused variable 'vs_height' [-Wunused-variable]
editor/editor_themes.cpp:202:10: warning: unused variable 'begin_time' [-Wunused-variable]
editor/editor_themes.cpp:239:10: warning: unused variable 'end_time' [-Wunused-variable]
editor/plugins/animation_blend_tree_editor_plugin.cpp:726:17: warning: unused variable 'an' [-Wunused-variable]
editor/plugins/script_text_editor.cpp:1278:8: warning: unused variable 'fold_state' [-Wunused-variable]
main/main.cpp:132:13: warning: 'use_vsync' defined but not used [-Wunused-variable]
modules/cvtt/image_compress_cvtt.cpp:231:8: warning: unused variable 'y_end' [-Wunused-variable]
modules/cvtt/image_compress_cvtt.cpp:311:6: warning: unused variable 'shift' [-Wunused-variable]
modules/gdscript/gdscript_editor.cpp:58:7: warning: unused variable 'th' [-Wunused-variable]
modules/gridmap/grid_map.cpp:1084:6: warning: unused variable 'ofs' [-Wunused-variable]
modules/theora/video_stream_theora.cpp:442:9: warning: unused variable 'tr' [-Wunused-variable]
modules/visual_script/visual_script_editor.cpp:2606:6: warning: unused variable 'count' [-Wunused-variable]
modules/visual_script/visual_script_editor.cpp:2829:6: warning: unused variable 'seq_count' [-Wunused-variable]
modules/visual_script/visual_script_editor.cpp:2844:24: warning: unused variable 'vnode_function' [-Wunused-variable]
modules/websocket/lws_peer.cpp:122:12: warning: unused variable 'peer_data' [-Wunused-variable]
modules/websocket/lws_peer.cpp:135:12: warning: unused variable 'peer_data' [-Wunused-variable]
modules/websocket/lws_peer.cpp:63:12: warning: unused variable 'peer_data' [-Wunused-variable]
modules/websocket/lws_peer.cpp:91:12: warning: unused variable 'peer_data' [-Wunused-variable]
platform/android/export/export.cpp:763:16: warning: unused variable 'node_size' [-Wunused-variable]
scene/gui/rich_text_label.cpp:850:10: warning: unused variable 'x_ofs' [-Wunused-variable]
scene/gui/text_edit.cpp:653:8: warning: unused variable 'tab_w' [-Wunused-variable]
scene/resources/bit_mask.cpp:186:6: warning: unused variable 'i' [-Wunused-variable]
scene/resources/mesh.cpp:549:20: warning: '_array_name' defined but not used [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:107:10: warning: unused variable 'v2' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:108:10: warning: unused variable 'v3' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:109:10: warning: unused variable 'v4' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:110:10: warning: unused variable 'v5' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:111:10: warning: unused variable 'v0n' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:112:10: warning: unused variable 'v1n' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:113:10: warning: unused variable 'v2n' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:114:10: warning: unused variable 'v3n' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:115:10: warning: unused variable 'v4n' [-Wunused-variable]
servers/audio/audio_rb_resampler.cpp:116:10: warning: unused variable 'v5n' [-Wunused-variable]
servers/visual/default_mouse_cursor.xpm:2:21: warning: 'default_mouse_cursor_xpm' defined but not used [-Wunused-variable]
```
2018-09-27 16:25:24 +02:00
..
bmp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
bullet Corrected cast_motion query behaviour 2018-09-22 11:17:31 +02:00
csg Merge pull request #21982 from luzpaz/misc-typos 2018-09-13 10:59:00 +02:00
cvtt Fix warnings about unused variables [-Wunused-variable] 2018-09-27 16:25:24 +02:00
dds Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
enet ENet: Remove redundant if condition 2018-09-26 10:53:45 +02:00
etc Fix warnings for comparison between signed and unsigned integers [-Wsign-compare] 2018-09-27 16:25:23 +02:00
freetype Misc. typos 2018-09-12 21:39:17 -04:00
gdnative Fix warnings for comparison between signed and unsigned integers [-Wsign-compare] 2018-09-27 16:25:23 +02:00
gdscript Fix warnings about unused variables [-Wunused-variable] 2018-09-27 16:25:24 +02:00
gridmap Fix warnings about unused variables [-Wunused-variable] 2018-09-27 16:25:24 +02:00
hdr Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
jpg Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
mbedtls Fix invalid comparison warnings: [-Wbool-compare] and [-Wenum-compare] 2018-09-27 16:25:24 +02:00
mobile_vr Style: Enable clang-format on GLSL shaders 2018-08-27 07:34:14 +02:00
mono Mono: Fix not creating generic Array or Dictionary where expected 2018-09-27 00:11:31 +02:00
ogg SCons: Pass env to modules can_build method 2018-05-30 19:11:36 +02:00
opensimplex Fix warnings for comparison between signed and unsigned integers [-Wsign-compare] 2018-09-27 16:25:23 +02:00
opus Merge pull request #21982 from luzpaz/misc-typos 2018-09-13 10:59:00 +02:00
pvr Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
recast Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
regex Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
squish Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
stb_vorbis Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
svg Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
tga Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
thekla_unwrap Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
theora Fix warnings about unused variables [-Wunused-variable] 2018-09-27 16:25:24 +02:00
tinyexr Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
upnp Misc. typos 2018-09-12 21:39:17 -04:00
visual_script Fix warnings about unused variables [-Wunused-variable] 2018-09-27 16:25:24 +02:00
vorbis Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
webm SCons: Fix checks for clang in env['CXX'] 2018-09-25 11:15:25 +02:00
webp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
websocket Fix warnings about unused variables [-Wunused-variable] 2018-09-27 16:25:24 +02:00
register_module_types.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
SCsub - Improves portability in joystick buttons enum 2018-01-24 19:12:54 -03:00