Commit f4f4ece8096bbe0be081250d2ae6e2a617c97d5f

Authored by Jarryd Beck
1 parent cb60381e

Improve README about supported compilers

Fixes #202.
Showing 1 changed file with 11 additions and 2 deletions
README.md
... ... @@ -140,8 +140,17 @@ This is a header only library.
140 140  
141 141 # Requirements
142 142  
143   -The only build requirement is a C++ compiler that supports C++11 regular
144   -expressions. For example GCC >= 4.9 or clang with libc++.
  143 +The only build requirement is a C++ compiler that supports C++11 features such as:
  144 +
  145 +* regex
  146 +* constexpr
  147 +* default constructors
  148 +
  149 +GCC >= 4.9 or clang >= 3.1 with libc++ are known to work.
  150 +
  151 +The following compilers are known not to work:
  152 +
  153 +* MSVC 13
145 154  
146 155 # TODO list
147 156  
... ...