aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-08-08 21:05:36 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-08-08 21:05:36 +0800
commit1bfb841771bae7461540e5372ccf528b5508bb10 (patch)
tree8f3e2172f44025458accfa7c7df4a6ee3747d1d2 /libsolidity
parentde8e9114fdba97ffa9e649f044066aec45ff4812 (diff)
downloaddexon-solidity-1bfb841771bae7461540e5372ccf528b5508bb10.tar.gz
dexon-solidity-1bfb841771bae7461540e5372ccf528b5508bb10.tar.zst
dexon-solidity-1bfb841771bae7461540e5372ccf528b5508bb10.zip
Remove experimental 0.5.0 pragma
Diffstat (limited to 'libsolidity')
-rw-r--r--libsolidity/ast/ExperimentalFeatures.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libsolidity/ast/ExperimentalFeatures.h b/libsolidity/ast/ExperimentalFeatures.h
index c66a3659..54aad573 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,
- V050, // v0.5.0 breaking changes
Test,
TestOnlyAnalysis
};
@@ -40,14 +39,12 @@ static const std::map<ExperimentalFeature, bool> ExperimentalFeatureOnlyAnalysis
{
{ ExperimentalFeature::SMTChecker, true },
{ ExperimentalFeature::TestOnlyAnalysis, true },
- { ExperimentalFeature::V050, true }
};
static const std::map<std::string, ExperimentalFeature> ExperimentalFeatureNames =
{
{ "ABIEncoderV2", ExperimentalFeature::ABIEncoderV2 },
{ "SMTChecker", ExperimentalFeature::SMTChecker },
- { "v0.5.0", ExperimentalFeature::V050 },
{ "__test", ExperimentalFeature::Test },
{ "__testOnlyAnalysis", ExperimentalFeature::TestOnlyAnalysis },
};