diff options
-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; |