Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
39eef90b
Commit
39eef90b
authored
Nov 11, 2013
by
Davis King
Browse files
Minor change to avoid compiler error in clang
parent
8ea4fc3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
dlib/simd/simd4f.h
dlib/simd/simd4f.h
+6
-0
No files found.
dlib/simd/simd4f.h
View file @
39eef90b
...
@@ -23,6 +23,12 @@ namespace dlib
...
@@ -23,6 +23,12 @@ namespace dlib
simd4f
(
const
__m128
&
val
)
:
x
(
val
)
{}
simd4f
(
const
__m128
&
val
)
:
x
(
val
)
{}
simd4f
(
const
simd4i
&
val
)
:
x
(
_mm_cvtepi32_ps
(
val
))
{}
simd4f
(
const
simd4i
&
val
)
:
x
(
_mm_cvtepi32_ps
(
val
))
{}
inline
simd4f
&
operator
=
(
const
simd4i
&
val
)
{
x
=
simd4f
(
val
);
return
*
this
;
}
simd4f
&
operator
=
(
const
__m128
&
val
)
simd4f
&
operator
=
(
const
__m128
&
val
)
{
{
x
=
val
;
x
=
val
;
...
...
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