From 4e75ce724972f9a5baaf0945ceb7d35f1db712dd Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Wed, 27 Aug 2014 22:55:46 +0200 Subject: [PATCH] Improve section on concessions for VC --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2351c0d..31d1b06 100644 --- a/README.md +++ b/README.md @@ -191,9 +191,9 @@ lest_decompose | 3.2 | 4.6 | 12 | lest_cpp03 (decompose) | ? | ? | 6 SP6 | **Note**: I've made a few concessions to enable compilation with Visual C++: -- Replace braced member initialisation with C++98 style initialisation. -- Prevent bug [Range-for, with try/catch statement, not compiling](https://connect.microsoft.com/VisualStudio/feedbackdetail/view/874705). -- Prevent [syntax error C2144](https://connect.microsoft.com/VisualStudio/feedbackdetail/view/812488) and use `enum{ value }` instead of `static constexpr bool` in struct `is_container` (for VC only). +- Prevent [error C2317](https://connect.microsoft.com/VisualStudio/feedbackdetail/view/874705) for range-for with try-catch statement: embrace try-catch. +- Prevent [error C2797](https://connect.microsoft.com/VisualStudio/feedbackdetail/view/917150): replace braced member initialisation with C++98 style initialisation. +- Prevent [error C2144](https://connect.microsoft.com/VisualStudio/feedbackdetail/view/812488): use `enum{ value }` instead of `static constexpr bool` in struct `is_container` (for VC only). Notes and References