1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Eliminated use of obsolete 'register' keyword

Fixes clang warnings about uses of this obsolete keyword.
This commit is contained in:
Sean McBride
2016-10-20 20:19:14 -04:00
parent 7793299e53
commit 943ac96526
6 changed files with 315 additions and 315 deletions
+1 -1
View File
@@ -2370,7 +2370,7 @@ static inline float sacLMGain(const float* dH,
static inline int sacChol8x8Damped(const float (*A)[8],
float lambda,
float (*L)[8]){
const register int N = 8;
const int N = 8;
int i, j, k;
float lambdap1 = lambda + 1.0f;
float x;