Make cppcheck target uniq for project

This commit is contained in:
ktlo
2019-09-17 12:35:58 +00:00
parent 1de134d3f1
commit 2914afb431
3 changed files with 7 additions and 6 deletions

View File

@@ -20,9 +20,9 @@ namespace std {
namespace tests {
class assertion_error : std::runtime_error {
class assertion_error : public std::runtime_error {
public:
explicit assertion_error(const std::string & message) : ::std::runtime_error(message) {}
explicit assertion_error(const std::string & message) : std::runtime_error(message) {}
};
struct {