Skip to content

Commit

Permalink
fix compiling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Vondrick committed Feb 11, 2014
1 parent e2d0882 commit d567aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/features.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// implementation for 'round' (may not be defined on Windows)
#if !defined(round) // && ( defined(_WIN32) || defined(_WIN64) )
inline int round(double d)
inline double round(double d)
{
return static_cast<int>(d + 0.5);
}
Expand Down

0 comments on commit d567aec

Please sign in to comment.