diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-01 14:32:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 14:32:04 +0200 |
commit | b0ce9401ffa731cc346ab6762fd0794709634428 (patch) | |
tree | c2e6de01b9efec28c959dbfd5cd59a0973d432e7 /core/math/math_funcs.cpp | |
parent | 531c92a53e5e7b9a1cb55249ef6086e874239872 (diff) | |
parent | 3c154eb93b3a098354bf6d18a9428826ec193f90 (diff) |
Merge pull request #30126 from qarmin/remove_unnecessary_code
Remove unnecessary code and add some error explanations
Diffstat (limited to 'core/math/math_funcs.cpp')
-rw-r--r-- | core/math/math_funcs.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/math/math_funcs.cpp b/core/math/math_funcs.cpp index 5b5fd8e283..7a2e74a413 100644 --- a/core/math/math_funcs.cpp +++ b/core/math/math_funcs.cpp @@ -161,8 +161,6 @@ uint32_t Math::larger_prime(uint32_t p_val) { return primes[idx]; idx++; } - - return 0; } double Math::random(double from, double to) { |