mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4700
3bb4b0d4
miner: fix build with boost 1.69 (moneromooo-monero)
This commit is contained in:
commit
20d3605a54
1 changed files with 1 additions and 1 deletions
|
@ -637,7 +637,7 @@ namespace cryptonote
|
||||||
boost::tribool battery_powered(on_battery_power());
|
boost::tribool battery_powered(on_battery_power());
|
||||||
if(!indeterminate( battery_powered ))
|
if(!indeterminate( battery_powered ))
|
||||||
{
|
{
|
||||||
on_ac_power = !battery_powered;
|
on_ac_power = !(bool)battery_powered;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue