Fix compiler version requirements in readme

c++17 is required to build the project. The minimum versions of gcc
and clang that support c++17 are 5 (for both compilers).

Closes #148
This commit is contained in:
Mike Siomkin 2020-05-26 15:29:43 +03:00
parent d05ef8ed0c
commit 00ac9cd304
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ In March 2015 we've also written a short paper outlining discussing some develop
**Note:** You can also find a detailed usage description at this [blog post](http://torpedro.github.io/tech/c++/sql/parser/2016/02/27/c++-sql-parser.html).
**Requirements:**
* gcc 4.8+ (or clang 3.4+)
* gcc 5+ (or clang 5+)
To use the SQL parser in your own projects you simply have to follow these few steps. The only requirement for is gcc 4.8+. Older versions of gcc/clang might also work, but are untested.