Skip to content

Commit

Permalink
Adding the cstdint header because some compilers seem to need it for …
Browse files Browse the repository at this point in the history
…things like uint32_t etc
  • Loading branch information
andrewdavidsmith committed Jun 26, 2023
1 parent f317931 commit daeb6ae
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/analysis/hmr-rep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <iomanip>
#include <string>
#include <stdexcept>
#include <cstdint> // for [u]int[0-9]+_t

#include "smithlab_utils.hpp"
#include "smithlab_os.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/analysis/hmr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <string>
#include <stdexcept>
#include <unordered_set>
#include <cstdint> // for [u]int[0-9]+_t

#include "smithlab_utils.hpp"
#include "smithlab_os.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/analysis/methcounts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <sstream>
#include <stdexcept>
#include <unordered_set>
#include <cstdint> // for [u]int[0-9]+_t

#include "OptionParser.hpp"
// #include "GenomicRegion.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/common/dnmt_error.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <stdexcept>
#include <string>
#include <cstring>
#include <cstdint> // for int64_t

struct dnmt_error: public std::exception {
int64_t err; // error possibly from HTSlib
Expand Down
1 change: 1 addition & 0 deletions src/utils/fast-liftover.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <unordered_map>
#include <stdexcept>
#include <algorithm>
#include <cstdint> // for [u]int[0-9]+_t

#include "smithlab_utils.hpp"
#include "smithlab_os.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/utils/format-reads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include <stdexcept>
#include <sstream>
#include <cstring>
#include <cstdint> // for [u]int[0-9]+_t

#include <config.h>

Expand Down
1 change: 1 addition & 0 deletions src/utils/uniq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <vector>
#include <iostream>
#include <stdexcept>
#include <cstdint> // for [u]int[0-9]+_t

// generated by autotools
#include <config.h>
Expand Down

0 comments on commit daeb6ae

Please sign in to comment.