Skip to content

Commit 1e8dcad

Browse files
author
Andrew Smith
committed
Adding the cstddef header so it is visible in all the c++ source files
1 parent 0b04b62 commit 1e8dcad

5 files changed

Lines changed: 5 additions & 0 deletions

File tree

src/continued_fraction.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <vector>
2525
#include <fstream>
2626
#include <iomanip>
27+
#include <cstddef>
2728

2829
struct ContinuedFraction {
2930
// Constructors

src/load_data_for_complexity.hpp

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

2323
#include <string>
2424
#include <vector>
25+
#include <cstddef>
2526

2627
size_t
2728
load_coverage_counts_MR(const bool VERBOSE,

src/moment_sequence.hpp

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

2323
#include <vector>
2424
#include <numeric>
25+
#include <cstddef>
2526

2627
// test Hankel moment matrix to ensure the moment sequence
2728
// is positive definite

src/preseq.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <fstream>
3333
#include <iostream>
3434
#include <random>
35+
#include <cstddef>
3536

3637
#include <OptionParser.hpp>
3738
#include <smithlab_utils.hpp>

src/to-mr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include <fstream>
2626
#include <unordered_map>
2727
#include <stdexcept>
28+
#include <cstddef>
2829

2930
#include "OptionParser.hpp"
3031
#include "smithlab_utils.hpp"

0 commit comments

Comments
 (0)