From 44cc8c32308b75a1bf519e7fe0b45ef67dbf5cb6 Mon Sep 17 00:00:00 2001 From: jofret Date: Tue, 21 Apr 2009 06:24:02 +0000 Subject: including stdbool is useless under windows --- src/type/doubleComplex.h | 2 ++ src/type/floatComplex.h | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/type/doubleComplex.h b/src/type/doubleComplex.h index 2d252bc7..5434a4f2 100644 --- a/src/type/doubleComplex.h +++ b/src/type/doubleComplex.h @@ -25,7 +25,9 @@ #endif #include +#ifndef _MSC_VER #include +#endif #ifndef STDC99 /* diff --git a/src/type/floatComplex.h b/src/type/floatComplex.h index 65912c8e..653723c5 100644 --- a/src/type/floatComplex.h +++ b/src/type/floatComplex.h @@ -24,7 +24,9 @@ # endif #endif -#include +#ifndef _MSC_VER + #include +#endif #ifndef STDC99 /* -- cgit