mirror of
https://github.com/godotengine/godot.git
synced 2025-01-18 20:40:57 +08:00
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. |
||
---|---|---|
.. | ||
default_theme | ||
animation.cpp | ||
animation.h | ||
audio_stream_sample.cpp | ||
audio_stream_sample.h | ||
bit_mask.cpp | ||
bit_mask.h | ||
bounds.cpp | ||
bounds.h | ||
box_shape.cpp | ||
box_shape.h | ||
canvas.cpp | ||
canvas.h | ||
capsule_shape_2d.cpp | ||
capsule_shape_2d.h | ||
capsule_shape.cpp | ||
capsule_shape.h | ||
circle_shape_2d.cpp | ||
circle_shape_2d.h | ||
color_ramp.cpp | ||
color_ramp.h | ||
concave_polygon_shape_2d.cpp | ||
concave_polygon_shape_2d.h | ||
concave_polygon_shape.cpp | ||
concave_polygon_shape.h | ||
convex_polygon_shape_2d.cpp | ||
convex_polygon_shape_2d.h | ||
convex_polygon_shape.cpp | ||
convex_polygon_shape.h | ||
curve.cpp | ||
curve.h | ||
cylinder_shape.cpp | ||
cylinder_shape.h | ||
dynamic_font_stb.cpp | ||
dynamic_font_stb.h | ||
dynamic_font.cpp | ||
dynamic_font.h | ||
environment.cpp | ||
environment.h | ||
font.cpp | ||
font.h | ||
material.cpp | ||
material.h | ||
mesh_data_tool.cpp | ||
mesh_data_tool.h | ||
mesh_library.cpp | ||
mesh_library.h | ||
mesh.cpp | ||
mesh.h | ||
multimesh.cpp | ||
multimesh.h | ||
packed_scene.cpp | ||
packed_scene.h | ||
particles_material.cpp | ||
particles_material.h | ||
physics_material.cpp | ||
physics_material.h | ||
plane_shape.cpp | ||
plane_shape.h | ||
polygon_path_finder.cpp | ||
polygon_path_finder.h | ||
primitive_meshes.cpp | ||
primitive_meshes.h | ||
ray_shape.cpp | ||
ray_shape.h | ||
rectangle_shape_2d.cpp | ||
rectangle_shape_2d.h | ||
room.cpp | ||
room.h | ||
scene_format_text.cpp | ||
scene_format_text.h | ||
SCsub | ||
segment_shape_2d.cpp | ||
segment_shape_2d.h | ||
shader.cpp | ||
shader.h | ||
shape_2d.cpp | ||
shape_2d.h | ||
shape_line_2d.cpp | ||
shape_line_2d.h | ||
shape.cpp | ||
shape.h | ||
sky_box.cpp | ||
sky_box.h | ||
space_2d.cpp | ||
space_2d.h | ||
sphere_shape.cpp | ||
sphere_shape.h | ||
style_box.cpp | ||
style_box.h | ||
surface_tool.cpp | ||
surface_tool.h | ||
text_file.cpp | ||
text_file.h | ||
texture.cpp | ||
texture.h | ||
theme.cpp | ||
theme.h | ||
tile_set.cpp | ||
tile_set.h | ||
video_stream.cpp | ||
video_stream.h | ||
visual_shader_nodes.cpp | ||
visual_shader_nodes.h | ||
visual_shader.cpp | ||
visual_shader.h | ||
world_2d.cpp | ||
world_2d.h | ||
world.cpp | ||
world.h |