mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 04:12:36 -03:00
random: remove windows-only compat.h include in randomenv
Note that this was probably only here to indirectly receive windows.h via another include in compat.h (windows.h or winreg.h aren't included there). Also note that compat.h is already pulled in here for everyone via util/time.h, so including inside a windows only ifdef is secondarily redundant.
This commit is contained in:
parent
b4fb0a3255
commit
fff80cd248
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@
|
|||
#include <support/cleanse.h>
|
||||
#include <util/time.h> // for GetTime()
|
||||
#ifdef WIN32
|
||||
#include <compat/compat.h>
|
||||
#include <windows.h>
|
||||
#include <winreg.h>
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
|
|
Loading…
Reference in a new issue