62ecb44035
Fixes the following GCC 5 warnings: ``` core/io/zip_io.h:128:26: warning: 'zlib_filefunc_def zipio_create_io_from_file(FileAccess**)' defined but not used [-Wunused-function] core/script_debugger_remote.cpp:110:17: warning: 'ObjectID safe_get_instance_id(const Variant&)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:103:12: warning: 'int _socket_create(IP::Type&, int, int)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:45:15: warning: 'size_t _set_sockaddr(sockaddr_storage*, const IP_Address&, int, IP::Type)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:76:15: warning: 'size_t _set_listen_sockaddr(sockaddr_storage*, int, IP::Type, IP_Address)' defined but not used [-Wunused-function] editor/editor_fonts.cpp:40:24: warning: 'Ref<BitmapFont> make_font(int, int, int, int, const int*, const Ref<Texture>&)' defined but not used [-Wunused-function] editor/editor_themes.cpp:85:26: warning: 'Ref<StyleBoxFlat> change_border_color(Ref<StyleBoxFlat>, Color)' defined but not used [-Wunused-function] editor/import/editor_import_collada.cpp:493:13: warning: 'void _generate_normals(const PoolVector<int>&, const PoolVector<Vector3>&, PoolVector<Vector3>&)' defined but not used [-Wunused-function] editor/import/editor_import_collada.cpp:524:13: warning: 'void _generate_tangents_and_binormals(const PoolVector<int>&, const PoolVector<Vector3>&, const PoolVector<Vector3>&, const PoolVector<Vector3>&, PoolVector<float>&)' defined but not used [-Wunused-function] editor/pvrtc_compress.cpp:118:13: warning: 'void _compress_etc(Image*)' defined but not used [-Wunused-function] modules/etc/image_etc.cpp:89:13: warning: 'void _decompress_etc1(Image*)' defined but not used [-Wunused-function] modules/etc/image_etc.cpp:93:13: warning: 'void _decompress_etc2(Image*)' defined but not used [-Wunused-function] modules/gdscript/editor/gdscript_highlighter.cpp:46:13: warning: 'bool _is_whitespace(CharType)' defined but not used [-Wunused-function] scene/2d/cpu_particles_2d.cpp:510:14: warning: 'float rand_from_seed_m1_p1(uint32_t&)' defined but not used [-Wunused-function] scene/3d/cpu_particles.cpp:474:14: warning: 'float rand_from_seed_m1_p1(uint32_t&)' defined but not used [-Wunused-function] scene/resources/default_theme/default_theme.cpp:123:20: warning: 'Ref<Shader> make_shader(const char*, const char*, const char*)' defined but not used [-Wunused-function] scene/resources/default_theme/default_theme.cpp:130:24: warning: 'Ref<BitmapFont> make_font(int, int, int, int, const int*, const Ref<Texture>&)' defined but not used [-Wunused-function] ``` Had to split `core/io/zip_io.h` into header and .cpp file without 'static' keyword. Not fixed yet (static definition in header used in some files but not all): ``` modules/websocket/lws_helper.h:111:13: warning: 'void _lws_make_protocols(void*, int (*)(lws*, lws_callback_reasons, void*, void*, size_t), PoolVector<String>, _LWSRef**)' defined but not used [-Wunused-function] ``` Also fixed a couple other warnings missed in previous commits. |
||
---|---|---|
.. | ||
area.cpp | ||
area.h | ||
arvr_nodes.cpp | ||
arvr_nodes.h | ||
audio_stream_player_3d.cpp | ||
audio_stream_player_3d.h | ||
baked_lightmap.cpp | ||
baked_lightmap.h | ||
bone_attachment.cpp | ||
bone_attachment.h | ||
camera.cpp | ||
camera.h | ||
collision_object.cpp | ||
collision_object.h | ||
collision_polygon.cpp | ||
collision_polygon.h | ||
collision_shape.cpp | ||
collision_shape.h | ||
cpu_particles.cpp | ||
cpu_particles.h | ||
gi_probe.cpp | ||
gi_probe.h | ||
immediate_geometry.cpp | ||
immediate_geometry.h | ||
interpolated_camera.cpp | ||
interpolated_camera.h | ||
light.cpp | ||
light.h | ||
listener.cpp | ||
listener.h | ||
mesh_instance.cpp | ||
mesh_instance.h | ||
multimesh_instance.cpp | ||
multimesh_instance.h | ||
navigation.cpp | ||
navigation.h | ||
navigation_mesh.cpp | ||
navigation_mesh.h | ||
particles.cpp | ||
particles.h | ||
path.cpp | ||
path.h | ||
physics_body.cpp | ||
physics_body.h | ||
physics_joint.cpp | ||
physics_joint.h | ||
portal.cpp | ||
portal.h | ||
position_3d.cpp | ||
position_3d.h | ||
proximity_group.cpp | ||
proximity_group.h | ||
ray_cast.cpp | ||
ray_cast.h | ||
reflection_probe.cpp | ||
reflection_probe.h | ||
remote_transform.cpp | ||
remote_transform.h | ||
room_instance.cpp | ||
room_instance.h | ||
scenario_fx.cpp | ||
scenario_fx.h | ||
SCsub | ||
skeleton.cpp | ||
skeleton.h | ||
soft_body.cpp | ||
soft_body.h | ||
spatial.cpp | ||
spatial.h | ||
spatial_velocity_tracker.cpp | ||
spatial_velocity_tracker.h | ||
spring_arm.cpp | ||
spring_arm.h | ||
sprite_3d.cpp | ||
sprite_3d.h | ||
vehicle_body.cpp | ||
vehicle_body.h | ||
visibility_notifier.cpp | ||
visibility_notifier.h | ||
visual_instance.cpp | ||
visual_instance.h | ||
voxel_light_baker.cpp | ||
voxel_light_baker.h |