aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-12-08 21:12:28 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-12-08 21:12:28 +0800
commit5104bd939f647bf7b0b418b3ed7034c1e74cc868 (patch)
treea60baa8c9e83b4dcec46ecac6debda3bb955ff0f
parent6afb6757d785fab414915ab11c1784b585669143 (diff)
downloaddexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.tar
dexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.tar.gz
dexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.tar.bz2
dexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.tar.lz
dexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.tar.xz
dexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.tar.zst
dexon-solidity-5104bd939f647bf7b0b418b3ed7034c1e74cc868.zip
removed few unused lines from cmakes
-rw-r--r--CompilerStack.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/CompilerStack.h b/CompilerStack.h
index 6f036d3f..82d27549 100644
--- a/CompilerStack.h
+++ b/CompilerStack.h
@@ -94,22 +94,6 @@ public:
/// scanning the source code - this is useful for printing exception information.
static bytes staticCompile(std::string const& _sourceCode, bool _optimize = false);
- /// Compile under msvc results in error CC2280
- CompilerStack& operator=(const CompilerStack& _other)
- {
- m_scanner = _other.m_scanner;
- m_globalContext = _other.m_globalContext;
- m_contractASTNode = _other.m_contractASTNode;
- m_parseSuccessful = _other.m_parseSuccessful;
- m_interface.reset(_other.m_interface.get());
- m_userDocumentation.reset(_other.m_userDocumentation.get());
- m_devDocumentation.reset(_other.m_devDocumentation.get());
- m_compiler = _other.m_compiler;
- m_interfaceHandler = _other.m_interfaceHandler;
- m_bytecode = m_bytecode;
- return *this;
- }
-
private:
/**
* Information pertaining to one source unit, filled gradually during parsing and compilation.