Skip to content

Commit

Permalink
Adding the cstddef header so it is visible in all the c++ source files
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Smith committed Nov 28, 2020
1 parent 0b04b62 commit 1e8dcad
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/continued_fraction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <vector>
#include <fstream>
#include <iomanip>
#include <cstddef>

struct ContinuedFraction {
// Constructors
Expand Down
1 change: 1 addition & 0 deletions src/load_data_for_complexity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <string>
#include <vector>
#include <cstddef>

size_t
load_coverage_counts_MR(const bool VERBOSE,
Expand Down
1 change: 1 addition & 0 deletions src/moment_sequence.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <vector>
#include <numeric>
#include <cstddef>

// test Hankel moment matrix to ensure the moment sequence
// is positive definite
Expand Down
1 change: 1 addition & 0 deletions src/preseq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <fstream>
#include <iostream>
#include <random>
#include <cstddef>

#include <OptionParser.hpp>
#include <smithlab_utils.hpp>
Expand Down
1 change: 1 addition & 0 deletions src/to-mr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <fstream>
#include <unordered_map>
#include <stdexcept>
#include <cstddef>

#include "OptionParser.hpp"
#include "smithlab_utils.hpp"
Expand Down

0 comments on commit 1e8dcad

Please sign in to comment.