Added some travis ci target + corrected some warnings

This commit is contained in:
emeric
2020-10-31 22:33:01 +01:00
parent 45b6f67896
commit 8520ca5c0f
17 changed files with 108 additions and 51 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ FromClause::FromClause(const std::string& clause)
FromClause&
FromClause::And(const FromClause& clause)
{
for (const std::string fromClause : clause._clause)
for (const std::string& fromClause : clause._clause)
{
_clause.push_back(fromClause);
}