aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-01-14 18:01:42 +0800
committerChristian <c@ethdev.com>2015-01-14 18:01:42 +0800
commitd1e05ac416c68d65112e9dd1427b8b009802afef (patch)
treead37b5d5e947d288b4216a5d4710cf7cef541d34 /Types.h
parent22f0a4fde1a641e36945c60c67d96559f7ab5981 (diff)
downloaddexon-solidity-d1e05ac416c68d65112e9dd1427b8b009802afef.tar.gz
dexon-solidity-d1e05ac416c68d65112e9dd1427b8b009802afef.tar.zst
dexon-solidity-d1e05ac416c68d65112e9dd1427b8b009802afef.zip
Remove redundancy in FunctionType::getSizeOnStack.
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/Types.h b/Types.h
index c0ffe864..158d58eb 100644
--- a/Types.h
+++ b/Types.h
@@ -365,7 +365,9 @@ public:
_location) {}
FunctionType(TypePointers const& _parameterTypes, TypePointers const& _returnParameterTypes,
Location _location = Location::INTERNAL,
- bool _gasSet = false, bool _valueSet = false);
+ bool _gasSet = false, bool _valueSet = false):
+ m_parameterTypes(_parameterTypes), m_returnParameterTypes(_returnParameterTypes),
+ m_location(_location), m_gasSet(_gasSet), m_valueSet(_valueSet) {}
TypePointers const& getParameterTypes() const { return m_parameterTypes; }
TypePointers const& getReturnParameterTypes() const { return m_returnParameterTypes; }
@@ -393,10 +395,9 @@ private:
TypePointers m_parameterTypes;
TypePointers m_returnParameterTypes;
- Location m_location;
- unsigned m_sizeOnStack = 0;
- bool m_gasSet = false; ///< true iff the gas value to be used is on the stack
- bool m_valueSet = false; ///< true iff the value to be sent is on the stack
+ Location const m_location;
+ bool const m_gasSet = false; ///< true iff the gas value to be used is on the stack
+ bool const m_valueSet = false; ///< true iff the value to be sent is on the stack
mutable std::unique_ptr<MemberList> m_members;
};