aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-04-27 19:07:25 +0800
committerLiana Husikyan <liana@ethdev.com>2015-04-27 19:08:32 +0800
commit1087d34a665ad2d3595d8a5259d69e8f3d52eebe (patch)
treed544b73e03dd7bedfe0b105f9dea245ce10cdde1 /Types.h
parent88536f90e8403239380c280176250390bab2cd8d (diff)
downloaddexon-solidity-1087d34a665ad2d3595d8a5259d69e8f3d52eebe.tar.gz
dexon-solidity-1087d34a665ad2d3595d8a5259d69e8f3d52eebe.tar.zst
dexon-solidity-1087d34a665ad2d3595d8a5259d69e8f3d52eebe.zip
saved returnParameterNames in FunctionType constructor
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Types.h b/Types.h
index 49dd436d..65a6867d 100644
--- a/Types.h
+++ b/Types.h
@@ -573,6 +573,7 @@ public:
parseElementaryTypeVector(_parameterTypes),
parseElementaryTypeVector(_returnParameterTypes),
strings(),
+ strings(),
_location,
_arbitraryParameters
)
@@ -582,6 +583,7 @@ public:
TypePointers const& _parameterTypes,
TypePointers const& _returnParameterTypes,
strings _parameterNames = strings(),
+ strings _returnParameterNames = strings(),
Location _location = Location::Internal,
bool _arbitraryParameters = false,
bool _gasSet = false,
@@ -590,6 +592,7 @@ public:
m_parameterTypes (_parameterTypes),
m_returnParameterTypes (_returnParameterTypes),
m_parameterNames (_parameterNames),
+ m_returnParameterNames (_returnParameterNames),
m_location (_location),
m_arbitraryParameters (_arbitraryParameters),
m_gasSet (_gasSet),