aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/ExpressionCompiler.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-31 05:44:46 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-20 08:23:21 +0800
commitefa4598c2305250ac048fad88951008c1cb55227 (patch)
tree46e11636091389d0f882f1d1659e40bc76f52375 /libsolidity/codegen/ExpressionCompiler.h
parent6cec0789b56add0dddb3c478111fb713c6d432c8 (diff)
downloaddexon-solidity-efa4598c2305250ac048fad88951008c1cb55227.tar.gz
dexon-solidity-efa4598c2305250ac048fad88951008c1cb55227.tar.zst
dexon-solidity-efa4598c2305250ac048fad88951008c1cb55227.zip
Mark functions static
Diffstat (limited to 'libsolidity/codegen/ExpressionCompiler.h')
-rw-r--r--libsolidity/codegen/ExpressionCompiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.h b/libsolidity/codegen/ExpressionCompiler.h
index 5f6c3d64..cdfa096e 100644
--- a/libsolidity/codegen/ExpressionCompiler.h
+++ b/libsolidity/codegen/ExpressionCompiler.h
@@ -119,7 +119,7 @@ private:
/// @returns true if the operator applied to the given type requires a cleanup prior to the
/// operation.
- bool cleanupNeededForOp(Type::Category _type, Token::Value _op) const;
+ static bool cleanupNeededForOp(Type::Category _type, Token::Value _op);
/// @returns the CompilerUtils object containing the current context.
CompilerUtils utils();