Force all and extra warnings as errors except for tests

This commit is contained in:
Bartek Kryza
2022-06-08 20:32:32 +02:00
parent fbcecdab50
commit 0e7c30541a
20 changed files with 45 additions and 51 deletions

View File

@@ -119,12 +119,13 @@ std::shared_ptr<decorator> note::from_string(std::string_view c)
return res;
}
std::shared_ptr<decorator> skip::from_string(std::string_view c)
std::shared_ptr<decorator> skip::from_string(std::string_view /*c*/)
{
return std::make_shared<skip>();
}
std::shared_ptr<decorator> skip_relationship::from_string(std::string_view c)
std::shared_ptr<decorator> skip_relationship::from_string(
std::string_view /*c*/)
{
return std::make_shared<skip_relationship>();
}