Skip to content

Commit

Permalink
refs #4201 fixing Unix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Nov 29, 2011
1 parent a6f88ba commit fe1f7ba
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ void ConvertToMDEvents::calculate_y_coordinate<NoQ>(std::vector<coord_t> &Coord,

template<>
bool ConvertToMDEvents::calculate_ND_coordinates<NoQ>(const MantidVec& X,size_t i,size_t j,std::vector<coord_t> &Coord){
Coord[0] = 0.5*( X[j]+ X[j+1]);
return true;
UNUSED_ARG(i);
Coord[0] = 0.5*( X[j]+ X[j+1]);
return true;
}

template<>
Expand Down

0 comments on commit fe1f7ba

Please sign in to comment.