Add C++11 noexcept compatibility for VS2013

This commit is contained in:
Vinnie Falco
2014-03-12 15:36:23 -07:00
parent b78076670e
commit b2f06dbe3c
2 changed files with 4 additions and 3 deletions

View File

@@ -249,9 +249,6 @@
<Filter Include="beast\config\platform">
<UniqueIdentifier>{38c81e1f-f831-4632-af45-6340683f3346}</UniqueIdentifier>
</Filter>
<Filter Include="beast\config\stdlib">
<UniqueIdentifier>{7243e5e5-ad7e-4d81-8444-d545919e850c}</UniqueIdentifier>
</Filter>
<Filter Include="beast\smart_ptr">
<UniqueIdentifier>{4e9c54da-1581-41d7-ac75-48140e4a13d4}</UniqueIdentifier>
</Filter>

View File

@@ -18,3 +18,7 @@
//==============================================================================
// Microsoft Visual C++ compiler configuration
#ifndef noexcept
# define noexcept throw()
#endif