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

[basefunctionset.local.lagrange] disabled deprecation warnings

parent 11f30ea5
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,10 @@ public: ...@@ -62,7 +62,10 @@ public:
typedef typename BaseFunctionSetType::BaseFunctionSetType HostBaseFunctionSetType; typedef typename BaseFunctionSetType::BaseFunctionSetType HostBaseFunctionSetType;
const HostBaseFunctionSetType tmpBaseFunctionSet = baseFunctionSet_.baseFunctionSet(entity_); const HostBaseFunctionSetType tmpBaseFunctionSet = baseFunctionSet_.baseFunctionSet(entity_);
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
size_ = tmpBaseFunctionSet.numBaseFunctions(); size_ = tmpBaseFunctionSet.numBaseFunctions();
#pragma GCC diagnostic pop
// this is still fishy, i.e. p-adaptivity // this is still fishy, i.e. p-adaptivity
order_ = baseFunctionSet_.space().order(); order_ = baseFunctionSet_.space().order();
} }
...@@ -104,7 +107,10 @@ public: ...@@ -104,7 +107,10 @@ public:
// and evaluate // and evaluate
for (unsigned int i = 0; i < size_; ++i) { for (unsigned int i = 0; i < size_; ++i) {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
baseFunctionSet.evaluate(i, x, ret[i]); baseFunctionSet.evaluate(i, x, ret[i]);
#pragma GCC diagnostic pop
} }
} }
...@@ -135,8 +141,11 @@ public: ...@@ -135,8 +141,11 @@ public:
// evaluate // evaluate
for (unsigned int i = 0; i < size_; ++i) { for (unsigned int i = 0; i < size_; ++i) {
// get untransposed jacobian // get untransposed jacobian
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
baseFunctionSet.jacobian(i, x, jacobianUntransposed); baseFunctionSet.jacobian(i, x, jacobianUntransposed);
#pragma GCC diagnostic pop
// transpose for each dim of range // transpose for each dim of range
const unsigned int dimRange = DiscreteFunctionSpaceType::dimRange; const unsigned int dimRange = DiscreteFunctionSpaceType::dimRange;
......
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