Macro to disable RTTI

This commit is contained in:
Baptiste Wicht 2014-10-29 17:52:30 +01:00
parent 1a558d76bd
commit 164095cc0c

View File

@ -500,7 +500,11 @@ namespace cxxopts
const T&
as() const
{
#ifdef CXXOPTS_NO_RTTI
return static_cast<const values::default_value<T>&>(*m_value).get();
#else
return dynamic_cast<const values::default_value<T>&>(*m_value).get();
#endif
}
private: