forked from github/server
this single-use macro doesn't belong there
This commit is contained in:
parent
1ec18b8fd9
commit
52e64ac418
|
@ -922,6 +922,8 @@ static void oceans_around(region * r, region * rn[])
|
|||
}
|
||||
}
|
||||
|
||||
#define SWAP_INTS(a, b) { a^=b; b^=a; a^=b; }
|
||||
|
||||
static void smooth_island(region_list * island)
|
||||
{
|
||||
region *rn[MAXDIRECTIONS];
|
||||
|
|
|
@ -53,7 +53,6 @@ extern "C" {
|
|||
#define HASH1 JENKINS_HASH1
|
||||
#define HASH2 JENKINS_HASH2
|
||||
|
||||
#define SWAP_INTS(a, b) { a^=b; b^=a; a^=b; }
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue