From 00ac9cd3042416f0d74d54de0b5b7b4bb5f3dcd4 Mon Sep 17 00:00:00 2001 From: Mike Siomkin Date: Tue, 26 May 2020 15:29:43 +0300 Subject: [PATCH] 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41206c0..7aa28dc 100644 --- a/README.md +++ b/README.md @@ -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.