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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user