mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-15 11:46:56 +02:00
Fix compilation error
This commit is contained in:
parent
5e3504f578
commit
34bf741936
@ -32,7 +32,7 @@ protected:
|
|||||||
auto iter = widgets.find(name);
|
auto iter = widgets.find(name);
|
||||||
if(iter == widgets.end())
|
if(iter == widgets.end())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
return dynamic_pointer_cast<T>(iter->second);
|
return std::dynamic_pointer_cast<T>(iter->second);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user