Disable clang-tidy warnings I can't do anything about.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2019-10-08 18:03:27 +02:00
parent 61aa6b4653
commit 43d9e3947a
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 1 deletions

View File

@ -171,6 +171,7 @@ string URI::make_request(const string &uri, bool archive) const
}
else
{
// NOLINTNEXTLINE(cert-err60-cpp)
throw Poco::Exception("Protocol not supported.");
}
@ -214,7 +215,7 @@ string URI::make_request(const string &uri, bool archive) const
}
default:
{
throw Poco::Exception(response.getReason());
throw Poco::Exception(response.getReason()); // NOLINT(cert-err60-cpp)
return "";
}
}