diff options
author | Richard Nelson <none@none> | 2010-08-20 14:36:46 -0700 |
---|---|---|
committer | Richard Nelson <none@none> | 2010-08-20 14:36:46 -0700 |
commit | e948c4d9a95633f0b9eda9fbcb6e79ebacda8ef5 (patch) | |
tree | 322a27d58e2b4f2392c70d78c8ebdd67659d3e5d /indra | |
parent | 8f82c6a75795b5de746574432571ce468a43d13b (diff) |
removed unused template function
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/llsdparam.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/indra/llui/llsdparam.h b/indra/llui/llsdparam.h index 71b0a45630..d8af3c9bce 100644 --- a/indra/llui/llsdparam.h +++ b/indra/llui/llsdparam.h @@ -57,15 +57,6 @@ private: void readSDValues(const LLSD& sd, LLInitParam::BaseBlock& block); template<typename T> - bool readTypedValue(void* val_ptr, boost::function<T(const LLSD&)> parser_func) - { - if (!mCurReadSD) return false; - - *((T*)val_ptr) = parser_func(*mCurReadSD); - return true; - } - - template<typename T> bool writeTypedValue(const void* val_ptr, const parser_t::name_stack_t& name_stack) { if (!mWriteSD) return false; |