From 9d6fc0488b53fa511b27a21c49126c487da53832 Mon Sep 17 00:00:00 2001 From: Bence Magyar Date: Tue, 2 Sep 2014 11:28:47 +0200 Subject: [PATCH] __inline -> inline --- .../include/opencv2/surface_matching/t_hash_int.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/surface_matching/include/opencv2/surface_matching/t_hash_int.hpp b/modules/surface_matching/include/opencv2/surface_matching/t_hash_int.hpp index 83f7ca4de..601efa5c9 100644 --- a/modules/surface_matching/include/opencv2/surface_matching/t_hash_int.hpp +++ b/modules/surface_matching/include/opencv2/surface_matching/t_hash_int.hpp @@ -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 */