Skip to content

Commit

Permalink
Fix TE_FLOAT build
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Mar 9, 2024
1 parent 06d4f99 commit 1321433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tinyexpr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2050,9 +2050,9 @@ te_expr* te_parser::power(te_parser::state* theState)
get_function2(theState->m_value) == te_builtins::te_sub)) ||
#ifndef TE_FLOAT
(is_function1(theState->m_value) &&
(get_function1(theState->m_value) == te_builtins::te_bitwise_not)) )
(get_function1(theState->m_value) == te_builtins::te_bitwise_not))
#endif
)
) )
{
if (is_function2(theState->m_value) &&
get_function2(theState->m_value) == te_builtins::te_sub)
Expand Down

0 comments on commit 1321433

Please sign in to comment.