diff options
Diffstat (limited to 'CompilerUtils.h')
-rw-r--r-- | CompilerUtils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CompilerUtils.h b/CompilerUtils.h index 928f0e2d..6bd8d315 100644 --- a/CompilerUtils.h +++ b/CompilerUtils.h @@ -58,10 +58,14 @@ public: static unsigned getSizeOnStack(std::vector<T> const& _variables); static unsigned getSizeOnStack(std::vector<std::shared_ptr<Type const>> const& _variableTypes); + /// Bytes we need to the start of call data. + /// - The size in bytes of the function (hash) identifier. + static const unsigned int dataStartOffset; private: CompilerContext& m_context; }; + template <class T> unsigned CompilerUtils::getSizeOnStack(std::vector<T> const& _variables) { |