mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11303 from ethereum/noncopyable
Remove the usage of boost::noncopyable
This commit is contained in:
+5
-2
@@ -24,7 +24,6 @@
|
||||
#include <test/evmc/evmc.h>
|
||||
|
||||
#include <boost/filesystem/path.hpp>
|
||||
#include <boost/noncopyable.hpp>
|
||||
#include <boost/program_options.hpp>
|
||||
|
||||
namespace solidity::test
|
||||
@@ -49,8 +48,12 @@ static constexpr auto heraDownloadLink = "https://github.com/ewasm/hera/releases
|
||||
|
||||
struct ConfigException : public util::Exception {};
|
||||
|
||||
struct CommonOptions: boost::noncopyable
|
||||
struct CommonOptions
|
||||
{
|
||||
/// Noncopyable.
|
||||
CommonOptions(CommonOptions const&) = delete;
|
||||
CommonOptions& operator=(CommonOptions const&) = delete;
|
||||
|
||||
std::vector<boost::filesystem::path> vmPaths;
|
||||
boost::filesystem::path testPath;
|
||||
bool ewasm = false;
|
||||
|
||||
Reference in New Issue
Block a user