Fix a bug of any_cast

This commit is contained in:
an-tao 2018-10-16 11:07:50 +08:00
parent 23b8d7447a
commit b217644ba9
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class HttpViewData
{
try
{
return *(std::any_cast<T>(&(it->second)));
return *(any_cast<T>(&(it->second)));
}
catch (std::exception &e)
{