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
49b55a72
Commit
49b55a72
authored
Jul 26, 2012
by
Sam Bromley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Protect check for _MSC_VER with #if defined.
parent
318151d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
internal.hpp
modules/core/include/opencv2/core/internal.hpp
+4
-5
No files found.
modules/core/include/opencv2/core/internal.hpp
View file @
49b55a72
...
...
@@ -120,15 +120,15 @@ CV_INLINE IppiSize ippiSize(int width, int height)
# else
# define CV_SSSE3 0
# endif
# if defined __SSE4_1__ ||
_MSC_VER >= 1600
# if defined __SSE4_1__ ||
(defined _MSC_VER && _MSC_VER >= 1600)
# include <smmintrin.h>
# define CV_SSE4_1 1
# endif
# if defined __SSE4_2__ ||
_MSC_VER >= 1600
# if defined __SSE4_2__ ||
(defined _MSC_VER && _MSC_VER >= 1600)
# include <nmmintrin.h>
# define CV_SSE4_2 1
# endif
# if defined __AVX__ ||
_MSC_VER >= 1600
# if defined __AVX__ ||
(defined _MSC_VER && _MSC_VER >= 1600)
# include <immintrin.h>
# define CV_AVX 1
# endif
...
...
@@ -779,4 +779,4 @@ CV_EXPORTS bool icvCheckGlError(const char* file, const int line, const char* fu
#endif //__cplusplus
#endif // __OPENCV_CORE_INTERNAL_HPP__
\ No newline at end of file
#endif // __OPENCV_CORE_INTERNAL_HPP__
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