Skip to content

Commit

Permalink
Merge Pull Request #12421 from rppawlo/Trilinos/panzer-fix-gcc-12
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: b'Panzer: fix unused varible warnings as error for gnu 12'
PR Author: rppawlo
  • Loading branch information
trilinos-autotester authored Oct 19, 2023
2 parents 352b24d + f53d909 commit b05c397
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/panzer/disc-fe/src/Panzer_IntegrationValues2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,6 @@ getUniformSideCubaturePointsRef(const bool cache,
if(side_cub_points_evaluated_ and not force)
return side_cub_points;

Intrepid2::CellTools<PHX::Device::execution_space> cell_tools;
MDFieldArrayFactory af(prefix_,true);

int num_space_dim = int_rule->topology->getDimension();
Expand Down Expand Up @@ -900,7 +899,6 @@ getUniformCubatureWeightsRef(const bool cache,
if(cub_weights_evaluated_ and not force)
return cub_weights;

Intrepid2::CellTools<PHX::Device::execution_space> cell_tools;
MDFieldArrayFactory af(prefix_,true);

int num_space_dim = int_rule->topology->getDimension();
Expand Down Expand Up @@ -1066,7 +1064,6 @@ getWeightedMeasure(const bool cache,
if(weighted_measure_evaluated_ and not force)
return weighted_measure;

Intrepid2::CellTools<PHX::Device::execution_space> cell_tools;
MDFieldArrayFactory af(prefix_,true);

const int num_space_dim = int_rule->topology->getDimension();
Expand Down Expand Up @@ -1234,7 +1231,6 @@ getWeightedNormals(const bool cache,
if(weighted_normals_evaluated_ and not force)
return weighted_normals;

Intrepid2::CellTools<PHX::Device::execution_space> cell_tools;
MDFieldArrayFactory af(prefix_,true);

const int num_space_dim = int_rule->topology->getDimension();
Expand Down

0 comments on commit b05c397

Please sign in to comment.