From 2a99a8350f13f04d4e81cdb414d7353f73c3c4c4 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 12 Mar 2014 15:36:23 -0700 Subject: [PATCH] Add C++11 noexcept compatibility for VS2013 --- Builds/VisualStudio2013/beast.vcxproj.filters | 3 --- beast/config/compiler/VisualC.h | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Builds/VisualStudio2013/beast.vcxproj.filters b/Builds/VisualStudio2013/beast.vcxproj.filters index 6e339bc91a..b96a696fbe 100644 --- a/Builds/VisualStudio2013/beast.vcxproj.filters +++ b/Builds/VisualStudio2013/beast.vcxproj.filters @@ -249,9 +249,6 @@ {38c81e1f-f831-4632-af45-6340683f3346} - - {7243e5e5-ad7e-4d81-8444-d545919e850c} - {4e9c54da-1581-41d7-ac75-48140e4a13d4} diff --git a/beast/config/compiler/VisualC.h b/beast/config/compiler/VisualC.h index 1a238f0607..38468c18ce 100644 --- a/beast/config/compiler/VisualC.h +++ b/beast/config/compiler/VisualC.h @@ -18,3 +18,7 @@ //============================================================================== // Microsoft Visual C++ compiler configuration + +#ifndef noexcept +# define noexcept throw() +#endif