[SMTChecker] Warn when no solver was found and there are unhandled queries.

This commit is contained in:
Leonardo Alt
2019-01-29 14:29:07 +01:00
parent ebf503a67d
commit 9a33367bc6
6 changed files with 52 additions and 3 deletions
+7
View File
@@ -22,6 +22,8 @@
#pragma once
#include <libdevcore/CommonData.h>
#include <liblangutil/Exceptions.h>
#include <liblangutil/SourceLocation.h>
@@ -40,6 +42,11 @@ public:
ErrorReporter& operator=(ErrorReporter const& _errorReporter);
void append(ErrorList const& _errorList)
{
m_errorList += _errorList;
}
void warning(std::string const& _description);
void warning(SourceLocation const& _location, std::string const& _description);