Remove unused Value::GetPtr method

refs #12619
This commit is contained in:
Gunnar Beutner 2016-09-01 15:26:25 +02:00
parent b5d4d9aba3
commit 02442ff36f
1 changed files with 0 additions and 6 deletions

View File

@ -286,12 +286,6 @@ public:
return boost::get<T>(m_Value);
}
template<typename T>
const T *GetPtr(void) const
{
return &boost::get<T>(m_Value);
}
private:
boost::variant<boost::blank, double, bool, String, Object::Ptr> m_Value;
};