aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/formal/SymbolicIntVariable.h
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-10-12 21:44:46 +0800
committerLeonardo Alt <leo@ethereum.org>2018-10-15 20:20:54 +0800
commit4a4620ac955d3c61b4778dfab3a9e05a91e4fc33 (patch)
tree32ee6fc579e12562cca7fa66558514f42d4ceccd /libsolidity/formal/SymbolicIntVariable.h
parent0778fb2dfca49bd84d202f78e31730c4e930749f (diff)
downloaddexon-solidity-4a4620ac955d3c61b4778dfab3a9e05a91e4fc33.tar.gz
dexon-solidity-4a4620ac955d3c61b4778dfab3a9e05a91e4fc33.tar.zst
dexon-solidity-4a4620ac955d3c61b4778dfab3a9e05a91e4fc33.zip
Refactor SSAVariable such that it only uses Type and not Declaration
Diffstat (limited to 'libsolidity/formal/SymbolicIntVariable.h')
-rw-r--r--libsolidity/formal/SymbolicIntVariable.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/libsolidity/formal/SymbolicIntVariable.h b/libsolidity/formal/SymbolicIntVariable.h
index d591e8db..92eeb13d 100644
--- a/libsolidity/formal/SymbolicIntVariable.h
+++ b/libsolidity/formal/SymbolicIntVariable.h
@@ -19,8 +19,6 @@
#include <libsolidity/formal/SymbolicVariable.h>
-#include <libsolidity/ast/Types.h>
-
namespace dev
{
namespace solidity
@@ -33,7 +31,8 @@ class SymbolicIntVariable: public SymbolicVariable
{
public:
SymbolicIntVariable(
- Declaration const& _decl,
+ Type const& _type,
+ std::string const& _uniqueName,
smt::SolverInterface& _interface
);