Skip to content

Commit cee4fe1

Browse files
committed
Merge #11144: Move local include to before system includes
eefc2f3 Move local include to before system includes (danra) Pull request description: Prevents accidental missing includes and hidden dependencies in the local file. Tree-SHA512: 466b9dd53c596980fdbcccf1dfd8f34eb7ec5b32323ccb635e5705efcedc81af8fbe155ac57b9a2fc5c1f516489e940d1762b3508ded1fb54e187219bb9f75e6
2 parents f088a1b + eefc2f3 commit cee4fe1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compat/endian.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
#include "config/bitcoin-config.h"
1010
#endif
1111

12-
#include <stdint.h>
13-
1412
#include "compat/byteswap.h"
1513

14+
#include <stdint.h>
15+
1616
#if defined(HAVE_ENDIAN_H)
1717
#include <endian.h>
1818
#elif defined(HAVE_SYS_ENDIAN_H)

0 commit comments

Comments
 (0)