Core/ParameterList: Make errors silent by default

Former-commit-id: 38d1613681a65194cb7392903c9bc20f912561a3
This commit is contained in:
Lynix
2016-03-08 13:58:09 +01:00
parent d349b9583e
commit 1a95c314ff
2 changed files with 64 additions and 75 deletions

View File

@@ -86,10 +86,10 @@ namespace Nz
Value value;
};
using ParameterMap = std::unordered_map<String, Parameter>;
Parameter& CreateValue(const String& name);
void DestroyValue(Parameter& parameter);
using ParameterMap = std::unordered_map<String, Parameter>;
ParameterMap m_parameters;
};
}