From a1ce66b304e7187cfae1457de91a031c0931273c Mon Sep 17 00:00:00 2001 From: Bob Summerwill Date: Fri, 18 Mar 2016 01:22:15 -0700 Subject: Fixed Windows warnings --- test/contracts/Wallet.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/contracts/Wallet.cpp') diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp index 476e817b..7c4a9a84 100644 --- a/test/contracts/Wallet.cpp +++ b/test/contracts/Wallet.cpp @@ -22,7 +22,16 @@ #include #include + +#if defined(_MSC_VER) +#pragma warning(push) +#pragma warning(disable:4535) // calling _set_se_translator requires /EHa +#endif #include +#if defined(_MSC_VER) +#pragma warning(pop) +#endif + #include #include -- cgit