diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-10-16 14:18:28 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-10-16 14:34:30 +0200 |
commit | fa1a38470697796a1a67397a815c8f8256f59224 (patch) | |
tree | 43b9eb1504964d8e1c41fe6d2bd4f8c1b16fc434 /src/common/system.cpp | |
parent | 88887531b704f3943fdb33abbdd5378ecfeee14f (diff) |
Move compat.h include from system.h to system.cpp
Diffstat (limited to 'src/common/system.cpp')
-rw-r--r-- | src/common/system.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/system.cpp b/src/common/system.cpp index 1d1c5fa56a..ba42c6df50 100644 --- a/src/common/system.cpp +++ b/src/common/system.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2022 The Bitcoin Core developers +// Copyright (c) 2009-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -12,6 +12,7 @@ #ifndef WIN32 #include <sys/stat.h> #else +#include <compat/compat.h> #include <codecvt> #endif |