mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fixed use of libraries.
This commit is contained in:
parent
a44bcb6909
commit
88239460bb
@ -264,7 +264,7 @@ void CompilerStack::reset(bool _keepSources)
|
||||
{
|
||||
m_sources.clear();
|
||||
if (m_addStandardSources)
|
||||
addSources(StandardSources);
|
||||
addSources(StandardSources, true);
|
||||
}
|
||||
m_globalContext.reset();
|
||||
m_sourceOrder.clear();
|
||||
|
@ -140,7 +140,7 @@ private:
|
||||
std::shared_ptr<SourceUnit> ast;
|
||||
std::string interface;
|
||||
bool isLibrary = false;
|
||||
void reset() { scanner.reset(); ast.reset(); interface.clear(); isLibrary = false;}
|
||||
void reset() { scanner.reset(); ast.reset(); interface.clear(); }
|
||||
};
|
||||
|
||||
struct Contract
|
||||
|
Loading…
Reference in New Issue
Block a user