Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
8ed4bae4
Commit
8ed4bae4
authored
Mar 14, 2015
by
Dmitry-Me
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce variable scope, make formatting consistent with surrounding code
parent
930808c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lapack.cpp
modules/core/src/lapack.cpp
+2
-2
No files found.
modules/core/src/lapack.cpp
View file @
8ed4bae4
...
...
@@ -725,11 +725,11 @@ template<typename T1, typename T2, typename T3> static void
MatrAXPY
(
int
m
,
int
n
,
const
T1
*
x
,
int
dx
,
const
T2
*
a
,
int
inca
,
T3
*
y
,
int
dy
)
{
int
i
,
j
;
int
i
;
for
(
i
=
0
;
i
<
m
;
i
++
,
x
+=
dx
,
y
+=
dy
)
{
T2
s
=
a
[
i
*
inca
];
j
=
0
;
int
j
=
0
;
#if CV_ENABLE_UNROLLED
for
(;
j
<=
n
-
4
;
j
+=
4
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment