added more noexcept

This commit is contained in:
2025-05-05 01:46:50 +03:00
parent 45c7ff131f
commit ba2c60389f
25 changed files with 79 additions and 79 deletions

View File

@@ -11,7 +11,7 @@ namespace omath::projectile_prediction
{
public:
[[nodiscard]]
constexpr Vector3<float> predict_position(const float time, const float gravity) const
constexpr Vector3<float> predict_position(const float time, const float gravity) const noexcept
{
auto predicted = m_origin + m_velocity * time;