diff options
author | Andy Maloney <asmaloney@gmail.com> | 2022-11-18 13:33:28 -0500 |
---|---|---|
committer | Andy Maloney <asmaloney@gmail.com> | 2022-11-18 17:46:13 -0500 |
commit | c7e34c2f9da1c8e644d3828d60947deea4afccee (patch) | |
tree | d6217402fb676d7bb60a6044887f365f94aed652 /include/godot_cpp/variant | |
parent | 6c2f9196d76b81de0ea0ff7480767c4c34336882 (diff) | |
download | redot-cpp-c7e34c2f9da1c8e644d3828d60947deea4afccee.tar.gz |
Basic static analysis fixes
- remove extraneous semicolons
- use "nullptr" instead of "0"
- remove "break" after "return"
- use <cstdio> instead of <stdio.h>
Diffstat (limited to 'include/godot_cpp/variant')
-rw-r--r-- | include/godot_cpp/variant/basis.hpp | 2 | ||||
-rw-r--r-- | include/godot_cpp/variant/plane.hpp | 2 | ||||
-rw-r--r-- | include/godot_cpp/variant/quaternion.hpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/godot_cpp/variant/basis.hpp b/include/godot_cpp/variant/basis.hpp index 00dbc50..81539d9 100644 --- a/include/godot_cpp/variant/basis.hpp +++ b/include/godot_cpp/variant/basis.hpp @@ -233,7 +233,7 @@ struct _NO_DISCARD_ Basis { static Basis looking_at(const Vector3 &p_target, const Vector3 &p_up = Vector3(0, 1, 0)); - Basis(const Quaternion &p_quaternion) { set_quaternion(p_quaternion); }; + Basis(const Quaternion &p_quaternion) { set_quaternion(p_quaternion); } Basis(const Quaternion &p_quaternion, const Vector3 &p_scale) { set_quaternion_scale(p_quaternion, p_scale); } Basis(const Vector3 &p_axis, real_t p_angle) { set_axis_angle(p_axis, p_angle); } diff --git a/include/godot_cpp/variant/plane.hpp b/include/godot_cpp/variant/plane.hpp index 8d5f69f..94ca5ae 100644 --- a/include/godot_cpp/variant/plane.hpp +++ b/include/godot_cpp/variant/plane.hpp @@ -43,7 +43,7 @@ struct _NO_DISCARD_ Plane { real_t d = 0; void set_normal(const Vector3 &p_normal); - _FORCE_INLINE_ Vector3 get_normal() const { return normal; }; + _FORCE_INLINE_ Vector3 get_normal() const { return normal; } void normalize(); Plane normalized() const; diff --git a/include/godot_cpp/variant/quaternion.hpp b/include/godot_cpp/variant/quaternion.hpp index dd60561..6632883 100644 --- a/include/godot_cpp/variant/quaternion.hpp +++ b/include/godot_cpp/variant/quaternion.hpp @@ -67,7 +67,7 @@ struct _NO_DISCARD_ Quaternion { Vector3 get_euler_xyz() const; Vector3 get_euler_yxz() const; - Vector3 get_euler() const { return get_euler_yxz(); }; + Vector3 get_euler() const { return get_euler_yxz(); } Quaternion slerp(const Quaternion &p_to, const real_t &p_weight) const; Quaternion slerpni(const Quaternion &p_to, const real_t &p_weight) const; |