Skip to content
Snippets Groups Projects
Commit e9680bef authored by James Zern's avatar James Zern
Browse files

vp9_systemdependent: reorder includes avoid proto mismatch

fixes a warning in vs9/x64 related to ceil()

Change-Id: Ic4bde9d0b7e961546dbe304de74aa37fc02fcf94
parent 6e079b7d
No related branches found
No related tags found
No related merge requests found
...@@ -12,11 +12,11 @@ ...@@ -12,11 +12,11 @@
#define VP9_COMMON_VP9_SYSTEMDEPENDENT_H_ #define VP9_COMMON_VP9_SYSTEMDEPENDENT_H_
#ifdef _MSC_VER #ifdef _MSC_VER
# include <math.h> // the ceil() definition must precede intrin.h
# if _MSC_VER > 1310 && (defined(_M_X64) || defined(_M_IX86)) # if _MSC_VER > 1310 && (defined(_M_X64) || defined(_M_IX86))
# include <intrin.h> # include <intrin.h>
# define USE_MSC_INTRIN # define USE_MSC_INTRIN
# endif # endif
# include <math.h>
# define snprintf _snprintf # define snprintf _snprintf
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment