Skip to content

Commit 327169c

Browse files
committed
fixup! Added missing include for github pipeline - this time for real
1 parent 6b01bb4 commit 327169c

File tree

15 files changed

+18
-0
lines changed

15 files changed

+18
-0
lines changed

include/graphblas/banshee/coordinates.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#define _H_GRB_BANSHEE_COORDINATES
2525

2626
#include <stddef.h> //size_t
27+
#include <cstdint.h> //size_t
2728

2829
#include <vector>
2930

include/graphblas/bsp1d/init.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#define _H_GRB_BSP1D_INIT
2525

2626
#include <vector> //queue of HP put and get requests
27+
#include <cstdint> // uintptr_t
28+
2729

2830
#include "config.hpp"
2931

include/graphblas/bsp1d/io.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#include <memory>
2727
#include <cstddef>
28+
#include <cstdint>
2829
#include <algorithm>
2930
#include <iterator>
3031

include/graphblas/bsp1d/matrix.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
#ifndef _H_GRB_BSP1D_MATRIX
2424
#define _H_GRB_BSP1D_MATRIX
2525

26+
#include <cstdint>
27+
2628
#include <graphblas/backends.hpp>
2729
#include <graphblas/base/matrix.hpp>
2830
#include <graphblas/rc.hpp>

include/graphblas/bsp1d/vector.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <map>
2727
#include <sstream>
2828
#include <vector>
29+
#include <cstdint>
2930

3031
#include <lpf/core.h>
3132

include/graphblas/hyperdags/blas1.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <graphblas/hyperdags/init.hpp>
3333

3434
#include <array>
35+
#include <cstdint>
3536

3637

3738
namespace grb {

include/graphblas/hyperdags/blas2.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <graphblas/hyperdags/init.hpp>
3333

3434
#include <array>
35+
#include <cstdint>
3536

3637

3738
namespace grb {

include/graphblas/hyperdags/blas3.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <graphblas/hyperdags/init.hpp>
3434

3535
#include <array>
36+
#include <cstdint>
3637

3738

3839
namespace grb {

include/graphblas/hyperdags/hyperdags.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <ostream>
3434
#include <iostream>
3535
#include <type_traits>
36+
#include <cstdint>
3637

3738
#include <assert.h>
3839

include/graphblas/hyperdags/io.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include <graphblas/config.hpp>
2828

2929
#include <array>
30+
#include <cstdint>
3031

3132

3233
namespace grb {

0 commit comments

Comments
 (0)