Skip to content

Commit dc0989c

Browse files
authored
Merge pull request #4379 from roystgnr/fix_no_amr
Fix unused variable warnings with --disable-amr
2 parents 1a475b5 + 0d6335b commit dc0989c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/systems/system_projection.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ void System::project_vector (const NumericVector<Number> & old_v,
498498
// AMR is disabled: simply copy the vector
499499
new_v = old_v;
500500

501-
libmesh_ignore(is_adjoint);
501+
libmesh_ignore(is_adjoint, active_local_range, variable_numbers);
502502

503503
#endif // #ifdef LIBMESH_ENABLE_AMR
504504
}

0 commit comments

Comments
 (0)