diff options
| author | Richard Linden <none@none> | 2014-02-12 10:32:02 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2014-02-12 10:32:02 -0800 | 
| commit | 5866bb7ef09b786f8f195770a70dc4289d183ca0 (patch) | |
| tree | 0be3b5e63506bf30edd3748f9e31740ae9ebbaa8 /indra/llmath/llcalcparser.h | |
| parent | 413be91cf5044889ade97dcbec4b17fceff122e3 (diff) | |
| parent | a8192fbf60540e42dcff5f1efb8bf8cafbfac484 (diff) | |
merge with release
Diffstat (limited to 'indra/llmath/llcalcparser.h')
| -rwxr-xr-x | indra/llmath/llcalcparser.h | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/llmath/llcalcparser.h b/indra/llmath/llcalcparser.h index e0ad270266..faa699ff7b 100755 --- a/indra/llmath/llcalcparser.h +++ b/indra/llmath/llcalcparser.h @@ -163,7 +163,7 @@ private:  	bool checkNaN(const F32& a) const { return !llisnan(a); } -	//FIX* non ambigious function fix making SIN() work for calc -Cryogenic Blitz +	//FIX* non ambiguous function fix making SIN() work for calc -Cryogenic Blitz  	F32 _sin(const F32& a) const { return sin(DEG_TO_RAD * a); }  	F32 _cos(const F32& a) const { return cos(DEG_TO_RAD * a); }  	F32 _tan(const F32& a) const { return tan(DEG_TO_RAD * a); } @@ -176,11 +176,8 @@ private:  	F32 _fabs(const F32& a) const { return fabs(a); }  	F32 _floor(const F32& a) const { return (F32)llfloor(a); }  	F32 _ceil(const F32& a) const { return llceil(a); } -  	F32 _atan2(const F32& a,const F32& b) const { return atan2(a,b); } - -  	LLCalc::calc_map_t* mConstants;  	LLCalc::calc_map_t* mVariables;  //	LLCalc::calc_map_t* mUserVariables;  | 
