Skip to content

Commit 4aa0277

Browse files
authored
Replace compiled.h by gap_all.h (#155)
No functional change for this package but makes it future-proof.
1 parent 88856df commit 4aa0277

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/binaryheap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// <https://stackoverflow.com/questions/6531543>
1616
//
1717

18-
#include "compiled.h" // GAP headers
18+
#include "gap_all.h" // GAP headers
1919
#include "binaryheap.h"
2020

2121
#define DS_BINARYHEAP_ISLESS(heap) ELM_PLIST(heap, 1)

src/datastructures.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "avl.h"
1818
#include "uf.h"
1919

20-
#include "compiled.h" // GAP headers
20+
#include "gap_all.h" // GAP headers
2121

2222
#include "hashfunctions.h"
2323

src/datastructures.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#ifndef DATASTRUCTURES_H
1212
#define DATASTRUCTURES_H
1313

14-
#include "compiled.h" // GAP headers
14+
#include "gap_all.h" // GAP headers
1515

1616

1717
// To improve code separation, each data structure implementation can

src/hashmap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#include "hashmap.h"
1111

12-
#include "compiled.h"
12+
#include "gap_all.h"
1313

1414
enum {
1515
// offsets in the hashmap positional object

src/pairingheap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// Helper function for pairing heaps implementation.
1313
//
1414

15-
#include "compiled.h" // GAP headers
15+
#include "gap_all.h" // GAP headers
1616
#include "pairingheap.h"
1717

1818
enum {

0 commit comments

Comments
 (0)