remove inline for get_clock_diff

This commit is contained in:
Krishna Vedala 2020-06-03 14:06:54 -04:00
parent fcf1b5ab91
commit b54ee460f3
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ void test3()
* \param[in] start_t end clock
* \returns time difference in seconds
*/
inline double get_clock_diff(clock_t start_t, clock_t end_t)
double get_clock_diff(clock_t start_t, clock_t end_t)
{
return (double)(end_t - start_t) / (double)CLOCKS_PER_SEC;
}