Skip to content

Commit

Permalink
Handle clang-tidy messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Feb 5, 2024
1 parent a429de8 commit aa9e425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions math/softfloat/soft_double.h
Original file line number Diff line number Diff line change
Expand Up @@ -2661,12 +2661,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
return c;
}

constexpr auto tan(soft_double x) -> soft_double
constexpr auto tan(soft_double x) -> soft_double // NOLINT(performance-unnecessary-value-param)
{
return sin(x) / cos(x);
}

constexpr auto asin(soft_double x) -> soft_double // NOLINT(misc-no-recursion)
constexpr auto asin(soft_double x) -> soft_double // NOLINT(misc-no-recursion,performance-unnecessary-value-param)
{
soft_double result { };

Expand Down

0 comments on commit aa9e425

Please sign in to comment.