mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix ambiguous type on Windows.
This commit is contained in:
parent
cc27d95be2
commit
e13bb994fb
@ -111,7 +111,7 @@ string TestFunctionCall::format(string const& _linePrefix, bool const _renderRes
|
|||||||
return _stream.str();
|
return _stream.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
string TestFunctionCall::formatBytesParameters(bytes const& _bytes, ParameterList const& _params) const
|
string TestFunctionCall::formatBytesParameters(bytes const& _bytes, dev::solidity::test::ParameterList const& _params) const
|
||||||
{
|
{
|
||||||
stringstream resultStream;
|
stringstream resultStream;
|
||||||
if (_bytes.empty())
|
if (_bytes.empty())
|
||||||
@ -174,7 +174,7 @@ string TestFunctionCall::formatBytesParameters(bytes const& _bytes, ParameterLis
|
|||||||
return resultStream.str();
|
return resultStream.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
string TestFunctionCall::formatRawParameters(ParameterList const& _params, std::string const& _linePrefix) const
|
string TestFunctionCall::formatRawParameters(dev::solidity::test::ParameterList const& _params, std::string const& _linePrefix) const
|
||||||
{
|
{
|
||||||
stringstream resultStream;
|
stringstream resultStream;
|
||||||
for (auto const& param: _params)
|
for (auto const& param: _params)
|
||||||
|
Loading…
Reference in New Issue
Block a user