Config/Layer: Fix accidental cast of RecursiveSection to Section

This commit is contained in:
MerryMage
2017-05-09 00:06:59 +01:00
parent 7a25dde8df
commit 32d9428171
4 changed files with 14 additions and 14 deletions

View File

@ -14,7 +14,7 @@
namespace Config
{
using LayerMap = std::map<System, std::vector<Section>>;
using LayerMap = std::map<System, std::vector<std::unique_ptr<Section>>>;
class ConfigLayerLoader
{