diff options
author | Kadah_Coba <none@none> | 2011-07-04 14:20:52 -0700 |
---|---|---|
committer | Kadah_Coba <none@none> | 2011-07-04 14:20:52 -0700 |
commit | 57c30517817a6458edab6bfdfad7d7112467ca48 (patch) | |
tree | a2a9c3b76bfb258be53bcd4c12490c1d569260d8 /indra/llmath/llcalc.h | |
parent | bb410e9576c582594e61b7f0dc0723eb5640f8ed (diff) |
Changes for STORM-1315 LLCalc
Removed dynamic allocation on mVariables and mConstants
CS cleanup
Diffstat (limited to 'indra/llmath/llcalc.h')
-rw-r--r-- | indra/llmath/llcalc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmath/llcalc.h b/indra/llmath/llcalc.h index 23c83f623e..cc31950cb6 100644 --- a/indra/llmath/llcalc.h +++ b/indra/llmath/llcalc.h @@ -69,12 +69,12 @@ public: private: std::string::size_type mLastErrorPos; - calc_map_t* mConstants; - calc_map_t* mVariables; + calc_map_t mConstants; + calc_map_t mVariables; // *TODO: Add support for storing user defined variables, and stored functions. // Will need UI work, and a means to save them between sessions. -// calc_map_t* mUserVariables; +// calc_map_t mUserVariables; // "There shall be only one" static LLCalc* sInstance; |