Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Panzer: fix unused varible warnings as error for gnu 12 #12421

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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