From 75a25c5e60784ac4a87950e2b1c2b506f4d7b17b Mon Sep 17 00:00:00 2001 From: AlexeyAB <alexeyab84@gmail.com> Date: Thu, 29 Jun 2017 17:52:42 +0000 Subject: [PATCH] For the console-app that uses DLL changed: MT-Debug-DLL (/MDd) to MT-DLL (/MD) --- src/data.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/data.h b/src/data.h index 3f6ef61..618d89c 100644 --- a/src/data.h +++ b/src/data.h @@ -2,6 +2,10 @@ #define DATA_H #include <pthread.h> +#if defined(_MSC_VER) && _MSC_VER < 1900 + #define inline __inline +#endif + #include "matrix.h" #include "list.h" #include "image.h" -- Gitblit v1.10.0