mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-07-07 18:38:21 +00:00
remove "using namespace std" from headers
It's nasty, and actually breaks on Solaris, where if.h fails to build due to: struct map *if_memmap;
This commit is contained in:
parent
4754390725
commit
383ff4f689
24 changed files with 47 additions and 51 deletions
|
@ -1011,7 +1011,7 @@ bool t_rpc_command_executor::print_transaction_pool_stats() {
|
|||
tools::msg_writer() << " Age Txes Bytes";
|
||||
for (i=0; i<n; i++)
|
||||
{
|
||||
tools::msg_writer() << get_time_hms(times[i]) << setw(8) << res.pool_stats.histo[i].txs << setw(12) << res.pool_stats.histo[i].bytes;
|
||||
tools::msg_writer() << get_time_hms(times[i]) << std::setw(8) << res.pool_stats.histo[i].txs << std::setw(12) << res.pool_stats.histo[i].bytes;
|
||||
}
|
||||
}
|
||||
tools::msg_writer();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue