Merge pull request #1698 from ethereum/exp-notation

Fix scientific notation in number literals
This commit is contained in:
chriseth
2017-03-15 14:55:45 +01:00
committed by GitHub
8 changed files with 159 additions and 52 deletions
+3
View File
@@ -416,6 +416,9 @@ public:
private:
rational m_value;
/// @returns true if the literal is a valid rational number.
static std::tuple<bool, rational> parseRational(std::string const& _value);
};
/**