1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-17 07:04:18 +08:00

__inline -> inline

This commit is contained in:
Bence Magyar
2014-09-02 11:28:47 +02:00
parent 607f2bfc99
commit 9d6fc0488b

View File

@@ -66,7 +66,7 @@ typedef struct HSHTBL_i
} hashtable_int;
__inline static unsigned int next_power_of_two(unsigned int value)
inline static unsigned int next_power_of_two(unsigned int value)
{
/* Round up to the next highest power of 2 */
/* from http://www-graphics.stanford.edu/~seander/bithacks.html */