From 954d7433bd8c10bce917326f70070077f0cfc165 Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Thu, 9 Aug 2018 20:37:49 +0200 Subject: Disallow remappings with empty prefix. --- solc/CommandLineInterface.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'solc/CommandLineInterface.h') diff --git a/solc/CommandLineInterface.h b/solc/CommandLineInterface.h index 45ec1eb5..010dce34 100644 --- a/solc/CommandLineInterface.h +++ b/solc/CommandLineInterface.h @@ -97,6 +97,8 @@ private: boost::program_options::variables_map m_args; /// map of input files to source code strings std::map m_sourceCodes; + /// list of remappings + std::vector m_remappings; /// list of allowed directories to read files from std::vector m_allowedDirectories; /// map of library names to addresses -- cgit