mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Eliminate byte-typedef and use uint8_t in all their places instead.
This change is made to (easily) be forward compatible with future C++ standards, in order to allow compiling the code with newer standards at some point in the future. * Removed the `using byte = uint8_t;` line from Common.h * Mechanically change all uses of `byte` to `uint8_t`. Tested with GCC 7.3 in C++11/14/17 modes :-)
This commit is contained in:
@@ -348,7 +348,7 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s)
|
||||
else if (i.which() == sp::utree_type::string_type)
|
||||
{
|
||||
auto sr = i.get<sp::basic_string<boost::iterator_range<char const*>, sp::utree_type::string_type>>();
|
||||
data.insert(data.end(), (byte const *)sr.begin(), (byte const*)sr.end());
|
||||
data.insert(data.end(), (uint8_t const *)sr.begin(), (uint8_t const*)sr.end());
|
||||
}
|
||||
else if (i.which() == sp::utree_type::any_type)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user