diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-03 19:58:01 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-16 17:46:46 +0800 |
commit | 67cd3a7180023f613efda64f4f4d2b1bc37990c6 (patch) | |
tree | 2a21e2f726baf19f39e999083158a32f90492cec /Types.h | |
parent | a16677dcfbd7fd7d42fbd6166e234b1b7001ec59 (diff) | |
download | dexon-solidity-67cd3a7180023f613efda64f4f4d2b1bc37990c6.tar.gz dexon-solidity-67cd3a7180023f613efda64f4f4d2b1bc37990c6.tar.zst dexon-solidity-67cd3a7180023f613efda64f4f4d2b1bc37990c6.zip |
added parsing for constant variables
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -516,7 +516,7 @@ private: std::vector<std::string> m_parameterNames; std::vector<std::string> m_returnParameterNames; Location const m_location; - /// true iff the function takes an arbitrary number of arguments of arbitrary types + /// true if the function takes an arbitrary number of arguments of arbitrary types bool const m_arbitraryParameters = false; 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 |