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

[NL] fix travis build

parent b3298dbf
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,11 @@ namespace NumLib
class NamedFunctionProvider
{
public:
virtual std::vector<NamedFunction> getNamedFunctions() const { return {}; }
virtual std::vector<NamedFunction> getNamedFunctions() const
{
return std::vector<NamedFunction>{};
}
virtual ~NamedFunctionProvider() = default;
};
......
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