remove compile warnings, Fixes #2562

[SVN r57800]
This commit is contained in:
Sascha Ochsenknecht
2009-11-20 09:09:36 +00:00
parent aaa914e9a4
commit 63c0bf7bfc

View File

@@ -33,7 +33,7 @@ namespace boost { namespace program_options {
void
typed_value<T, charT>::notify(const boost::any& value_store) const
{
const T* value = boost::any_cast<const T>(&value_store);
const T* value = boost::any_cast<T>(&value_store);
if (m_store_to) {
*m_store_to = *value;
}