Skip to content

Commit

Permalink
refs #4201 fixing Unix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Nov 29, 2011
1 parent 68eb3ea commit 2721386
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ inline void ConvertToQNDany::calc_generic_variables<NoQ>(std::vector<coord_t> &C
}
template<>
void ConvertToQNDany::calc_generic_variables<modQ>(std::vector<coord_t> &Coord, size_t nd){
throw(Kernel::Exception::NotImplementedError("not yet implemented"));
UNUSED_ARG(Coord);
UNUSED_ARG(nd);
throw(Kernel::Exception::NotImplementedError("not yet implemented"));
}

template<>
Expand All @@ -141,6 +143,7 @@ inline void ConvertToQNDany::calc_generic_variables<Q3D>(std::vector<coord_t> &C
template<>
void ConvertToQNDany::calculate_y_coordinate<NoQ>(std::vector<coord_t> &Coord,size_t i)
{
UNUSED_ARG(i);
Coord[1] = pYAxis->operator()(i);
}

Expand Down

0 comments on commit 2721386

Please sign in to comment.