Skip to content

Commit

Permalink
refs #6294 fixed stupid warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Dec 10, 2012
1 parent 4f966f7 commit 07a09e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace Geometry
T getMin()const{return min;}
T getMax()const{return max;}
/// return the vertice in the grid, based on this extent's size
T getGridVertex(const size_t ind)const{return min+m_Size*ind;}
T getGridVertex(const size_t ind)const{return min+m_Size*static_cast<T>(ind);}

void scaleExtents(double scaling,double offset)
{
Expand Down

0 comments on commit 07a09e3

Please sign in to comment.