aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerStack.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-04-22 20:33:38 +0800
committerchriseth <c@ethdev.com>2015-04-22 20:33:38 +0800
commitff39a1d2415d95a8f577e22bc3b5b304420dba85 (patch)
tree472e21ead3c6c88b4cf110f393b85101e374878e /CompilerStack.cpp
parentc41eb1400047d67bf4f52834ed817b558f16cc90 (diff)
parent88239460bb24f0c7d3f44715c69e012d53bff7ea (diff)
downloaddexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar
dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.gz
dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.bz2
dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.lz
dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.xz
dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.tar.zst
dexon-solidity-ff39a1d2415d95a8f577e22bc3b5b304420dba85.zip
Merge pull request #1708 from chriseth/sol_fix_libraries
Fixed use of libraries.
Diffstat (limited to 'CompilerStack.cpp')
-rw-r--r--CompilerStack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.cpp b/CompilerStack.cpp
index a2a17831..554d06fd 100644
--- a/CompilerStack.cpp
+++ b/CompilerStack.cpp
@@ -267,7 +267,7 @@ void CompilerStack::reset(bool _keepSources)
{
m_sources.clear();
if (m_addStandardSources)
- addSources(StandardSources);
+ addSources(StandardSources, true);
}
m_globalContext.reset();
m_sourceOrder.clear();