Skip to content

Commit 2e6203e

Browse files
committed
addressed compiler warning under MSVC
1 parent f88f750 commit 2e6203e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ docs/doxygen/latex
33
xcuserdata/
44
build/
55
x64/
6+
UpgradeLog.htm
67
.vs/
78
*.DS_Store
89
*idea/

framework/modules/saf_utilities/saf_utility_veclib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1361,7 +1361,7 @@ void utility_svsdiv
13611361
vDSP_vsdiv(a, 1, s, c, 1, (vDSP_Length)len);
13621362
#else
13631363
cblas_scopy(len, a, 1, c, 1);
1364-
cblas_sscal(len, 1.0/s[0], c, 1);
1364+
cblas_sscal(len, 1.0f/s[0], c, 1);
13651365
#endif
13661366
}
13671367

0 commit comments

Comments
 (0)