aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-12-06 09:34:05 +0800
committerChristian <c@ethdev.com>2014-12-08 20:15:43 +0800
commite0ed942519fbf3a5be106fae2d1906b9c217df95 (patch)
tree972a0081f985651ce70728341c414549abf9d3bf
parentf636ac6fc4eda7591c1056475c1258af5309a264 (diff)
downloaddexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar
dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.gz
dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.bz2
dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.lz
dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.xz
dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.zst
dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.zip
Removed unused members.
-rw-r--r--ExpressionCompiler.h4
-rw-r--r--NameAndTypeResolver.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h
index e93d3280..a02cddfc 100644
--- a/ExpressionCompiler.h
+++ b/ExpressionCompiler.h
@@ -132,10 +132,6 @@ private:
CompilerContext& m_context;
LValue m_currentLValue;
- /// If a "virtual" function (i.e. a bulit-in function without jump tag) is encountered, the
- /// actual function is stored here. @todo prevent assignment or store it with assignment
- enum class SpecialFunction { NONE, SEND, SHA3, SUICIDE, ECRECOVER, SHA256, RIPEMD160 };
- SpecialFunction m_currentSpecialFunction;
};
diff --git a/NameAndTypeResolver.h b/NameAndTypeResolver.h
index 190cf6fa..1ff9febf 100644
--- a/NameAndTypeResolver.h
+++ b/NameAndTypeResolver.h
@@ -60,8 +60,6 @@ public:
Declaration const* getNameFromCurrentScope(ASTString const& _name, bool _recursive = true);
private:
- /// Throws if @a _struct contains a recursive loop. Note that recursion via mappings is fine.
- void checkForRecursion(StructDefinition const& _struct);
void reset();
/// Maps nodes declaring a scope to scopes, i.e. ContractDefinition and FunctionDeclaration,