diff options
author | Josh Blum <josh@joshknows.com> | 2012-09-07 09:56:41 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-09-07 09:56:41 -0700 |
commit | eb738d1b6b4887bc475d83156985c25ba679b995 (patch) | |
tree | c3a9244c71f7cde5dcb6572e9282dc32e2ff5625 /volk/cmake | |
parent | b7a22f8b004eb7a88708fba7db2203462211921e (diff) |
cmake: copy stdbool for gnuradio as well
Diffstat (limited to 'volk/cmake')
-rw-r--r-- | volk/cmake/msvc/stdbool.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/volk/cmake/msvc/stdbool.h b/volk/cmake/msvc/stdbool.h index fc8ee28f40..ca4581d37a 100644 --- a/volk/cmake/msvc/stdbool.h +++ b/volk/cmake/msvc/stdbool.h @@ -21,9 +21,9 @@ #ifndef STDBOOL_WIN32_H #define STDBOOL_WIN32_H -#if !COMPILER(MSVC) -#error "This stdbool.h file should only be compiled with MSVC" -#endif +#ifndef _MSC_VER // [ +#error "Use this header only with Microsoft Visual C++ compilers!" +#endif // _MSC_VER ] #ifndef __cplusplus |