From 819dc09eb293a6ee71f17cbcf0269715ab296950 Mon Sep 17 00:00:00 2001 From: Mike Siomkin Date: Fri, 5 Jun 2020 20:30:40 +0300 Subject: [PATCH] Add missing braces to the README code snippet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9af5aba..cf57458 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ To use the SQL parser in your own projects you simply have to follow these few s const hsql::SQLStatement* statement = result.getStatement(0); if (statement->isType(hsql::kStmtSelect)) { - const auto* select = static_cast statement; + const auto* select = static_cast(statement); /* ... */ } }