diff options
author | lloyd <[email protected]> | 2009-12-23 17:16:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-23 17:16:55 +0000 |
commit | ef5ed1ce2ec318e7b405d57b2afc06bda6d8cfd8 (patch) | |
tree | 2f669f20eb5ee763b101716e6654216b28060406 /src | |
parent | 92a851901ea42398c221a608348d1336b5529b09 (diff) |
Fix compiler macro for MSVC warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/build-data/buildh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/buildh.in b/src/build-data/buildh.in index 4e2e19f73..427184b9d 100644 --- a/src/build-data/buildh.in +++ b/src/build-data/buildh.in @@ -60,7 +60,7 @@ %{target_compiler_defines} -#if defined(BOTAN_TARGET_COMPILER_IS_MSVC) +#if defined(BOTAN_BUILD_COMPILER_IS_MSVC) // 4250: inherits via dominance (diamond inheritence issue) // 4251: needs DLL interface (STL DLL exports) #pragma warning(disable: 4250 4251) |