aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/formal/SSAVariable.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsolidity/formal/SSAVariable.h')
-rw-r--r--libsolidity/formal/SSAVariable.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libsolidity/formal/SSAVariable.h b/libsolidity/formal/SSAVariable.h
index bf5dae3b..f4a4e93e 100644
--- a/libsolidity/formal/SSAVariable.h
+++ b/libsolidity/formal/SSAVariable.h
@@ -26,18 +26,17 @@ namespace dev
namespace solidity
{
-class Declaration;
-
/**
* This class represents the SSA representation of a program variable.
*/
class SSAVariable
{
public:
- /// @param _decl Used to determine the type and forwarded to the symbolic var.
+ /// @param _type Forwarded to the symbolic var.
/// @param _interface Forwarded to the symbolic var such that it can give constraints to the solver.
SSAVariable(
- Declaration const& _decl,
+ Type const& _type,
+ std::string const& _uniqueName,
smt::SolverInterface& _interface
);