Commit 9bc8514f authored by Dikay900's avatar Dikay900

fix issue for visual studio versions which arent standarized for the c99

standard
parent 36fbabf2
...@@ -45,7 +45,13 @@ ...@@ -45,7 +45,13 @@
#include <map> #include <map>
#include <vector> #include <vector>
#include <list> #include <list>
#if defined _MSC_VER && _MSC_VER <= 1700
#include <stdint.h>
#else
#include <inttypes.h> #include <inttypes.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <iostream> #include <iostream>
......
...@@ -40,7 +40,11 @@ ...@@ -40,7 +40,11 @@
// //
//M*/ //M*/
#if defined _MSC_VER && _MSC_VER <= 1700
#include <stdint.h>
#else
#include <inttypes.h> #include <inttypes.h>
#endif
#ifndef __OPENCV_TYPES_HPP #ifndef __OPENCV_TYPES_HPP
#define __OPENCV_TYPES_HPP #define __OPENCV_TYPES_HPP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment