Fix cppcheck const parameters
Convert method signature parameters to const where it is possible # Conflicts: # drivers/gles3/rasterizer_canvas_gles3.cpp # drivers/gles3/rasterizer_canvas_gles3.h # editor/plugins/animation_state_machine_editor.cpp # editor/plugins/animation_state_machine_editor.h
This commit is contained in:
parent
d01e4124eb
commit
a793960a10
14 changed files with 17 additions and 17 deletions
|
|
@ -122,7 +122,7 @@ static Transform3D _read_transform_from_array(const Vector<float> &array, int of
|
|||
|
||||
/* STRUCTURES */
|
||||
|
||||
Transform3D Collada::Node::compute_transform(Collada &state) const {
|
||||
Transform3D Collada::Node::compute_transform(const Collada &state) const {
|
||||
Transform3D xform;
|
||||
|
||||
for (int i = 0; i < xform_list.size(); i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue