summaryrefslogtreecommitdiff
path: root/indra/llmath/llcalcparser.h
AgeCommit message (Collapse)Author
2024-05-16Merge tag '7.1.7-release'Erik Kundiman
source for viewer 7.1.7.8974243247
2024-04-29#824 Process source files in bulk: replace tabs with spaces, convert CRLF to ↵Andrey Lihatskiy
LF, and trim trailing whitespaces as needed
2023-07-19Explicit when using function_ptr Phoenix binderErik Kundiman
From the errors: base type ‘float (*)(float, float) noexcept’ fails to be a struct or class type struct functor_action : public FuncT { ^~~~~~~~~~~~~~ ‘float (*)(float, float) noexcept’ is not a class, struct, or union type struct result { typedef typename FuncT::result_type type; }; ^~~~ type ‘float (*)(float, float) noexcept’ is not a direct base of ‘phoenix::functor_action<float (*)(float, float) noexcept>’ : FuncT(fptr_) {} ^ it seems that GCC, at least the ones on my system, failed to deduce that the binder meant to be used when trying to bind the C Std Math Library's powf and fmodf functions is of course the function pointer one (specifically the 2 args specialisation), and not the functor one.
2022-04-18Use correct namespace for bind, must be phoenix::bind or there is confusion ↵Nicky
with boost::bind
2016-03-07merge DRTVWR-398 build cleanup fixesOz Linden
2015-11-10remove execute permission from many files that should not have itOz Linden
2014-11-07STORM-2083: LLCalcParser calculates inverse trigonometric functions wrongAnsariel
2013-07-19BUILDFIX: #include and dependency cleanupRichard Linden
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2012-02-01cleaned up linden_common.h, removing stuff that is mostly unusedRichard Linden
2012-02-01converted a bunch of narrowing implicit conversions to explicitRichard Linden
2011-08-17add proper license headers to files that did not have themOz Linden
2011-06-30Additional functions for STORM-1315 Ability to do simple math in numeric ↵Kadah_Coba
edit fields Support for floor, ceil, modulo. Fixed ABS. Added more constants, SQRT_TWO_PI and SQRT3
2011-06-29STORM-1315 Ability to do simple math in numeric edit fieldsKadah_Coba