Skip to content
Snippets Groups Projects
Commit 1239bae5 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[assembler.system] fixed warnings

parent 96e42d63
No related branches found
No related tags found
No related merge requests found
......@@ -417,7 +417,7 @@ public:
void addLocalAssembler(const LocalAssembler::Codim0Vector<L>& localAssembler,
Dune::Stuff::LA::VectorInterface<V>& vector)
{
assert(vector.size() == int(testSpace_.mapper().size()));
assert(vector.size() == testSpace_.mapper().size());
localCodim0VectorAssemblers_.push_back(new LocalCodim0VectorAssemblerWrapper<L, V>(localAssembler, vector));
}
......@@ -527,6 +527,9 @@ private:
class LocalConstraintsApplication
{
public:
virtual ~LocalConstraintsApplication()
{
}
virtual void apply(const TestSpaceType& testSpace, const EntityType& entity) = 0;
};
......
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