From 56c15c8bfbd36ff9ffda3d42c4f1abab8e2b804c Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Mon, 27 Jun 2022 01:10:02 +0200 Subject: [PATCH] Drop experimental flag --- libsolidity/ast/ExperimentalFeatures.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libsolidity/ast/ExperimentalFeatures.h b/libsolidity/ast/ExperimentalFeatures.h index b71c17588..772bc4e08 100644 --- a/libsolidity/ast/ExperimentalFeatures.h +++ b/libsolidity/ast/ExperimentalFeatures.h @@ -31,7 +31,6 @@ enum class ExperimentalFeature { ABIEncoderV2, // new ABI encoder that makes use of Yul SMTChecker, - Stdlib, Test, TestOnlyAnalysis }; @@ -47,7 +46,6 @@ static std::map const ExperimentalFeatureNames { { "ABIEncoderV2", ExperimentalFeature::ABIEncoderV2 }, { "SMTChecker", ExperimentalFeature::SMTChecker }, - { "stdlib", ExperimentalFeature::Stdlib }, { "__test", ExperimentalFeature::Test }, { "__testOnlyAnalysis", ExperimentalFeature::TestOnlyAnalysis }, };