Fixing the mac build

This commit is contained in:
samcake 2016-07-14 16:43:56 -07:00
parent 776bcb6655
commit c45f810622

View file

@ -520,7 +520,7 @@ public:
Model(const Varying& input, A&&... args) :
Concept(nullptr), _data(Data(std::forward<A>(args)...)), _input(input), _output(Output()) {
// Recreate the Config to use the templated type
_data.createConfiguration<C>();
_data.template createConfiguration<C>();
_config = _data.getConfiguration();
applyConfiguration();
}