mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix unsed variable warning
This commit is contained in:
parent
1fa1894ee7
commit
8c4d9e8cfd
@ -606,7 +606,8 @@ bool Parser::isValidNumberLiteral(string const& _literal)
|
||||
{
|
||||
try
|
||||
{
|
||||
u256(_literal);
|
||||
u256 v(_literal);
|
||||
(void)v;
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user