diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-04-28 11:35:39 +0200 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-04-28 11:35:39 +0200 |
commit | a793960a1092764a81f240726e58bf34e06d7767 (patch) | |
tree | 9fb6079c95ba3b773d11dbbbfc08c1f4d1dca204 /editor/import/collada.h | |
parent | d01e4124eb56698fdcd68bb3186affba97779c28 (diff) |
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
Diffstat (limited to 'editor/import/collada.h')
-rw-r--r-- | editor/import/collada.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/collada.h b/editor/import/collada.h index 85735e93ac..df2b789081 100644 --- a/editor/import/collada.h +++ b/editor/import/collada.h @@ -348,7 +348,7 @@ public: Node *parent = nullptr; - Transform3D compute_transform(Collada &state) const; + Transform3D compute_transform(const Collada &state) const; Transform3D get_global_transform() const; Transform3D get_transform() const; |