Skip to content
Snippets Groups Projects
Commit e2ddf971 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL] fix msvc++ build

parent b840b884
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ namespace ProcessLib ...@@ -17,7 +17,7 @@ namespace ProcessLib
/// Single, constant value parameter. /// Single, constant value parameter.
template <typename T> template <typename T>
struct ConstantParameter final : public Parameter<T> { struct ConstantParameter final : public Parameter<T> {
ConstantParameter(T const& value) : _value{{value}} {} ConstantParameter(T const& value) : _value({value}) {}
// TODO allow for different sizes // TODO allow for different sizes
unsigned getNumberOfComponents() const { return 1; } unsigned getNumberOfComponents() const { return 1; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment