Skip to content

Commit

Permalink
Improve section on concessions for VC
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Aug 27, 2014
1 parent a4ee4f6 commit 4e75ce7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4e75ce7

Please sign in to comment.