Skip to content

Commit

Permalink
Merge bitcoin#11144: Move local include to before system includes
Browse files Browse the repository at this point in the history
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
  • Loading branch information
laanwj authored and PastaPastaPasta committed Sep 23, 2019
1 parent 39663bc commit 6cad0c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compat/endian.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#include "config/dash-config.h"
#endif

#include <stdint.h>

#include "compat/byteswap.h"

#include <stdint.h>

#if defined(HAVE_ENDIAN_H)
#include <endian.h>
#elif defined(HAVE_SYS_ENDIAN_H)
Expand Down

0 comments on commit 6cad0c7

Please sign in to comment.