Skip to content

Commit

Permalink
fix: Add missing includes that zig caught
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Jul 5, 2024
1 parent 85967a9 commit c166bdb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/include/sequences/Read.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#define SEQUENCES_READ_HPP

#include <iostream>
#include <cstdint>
#include <string>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions src/lib/sequences/tests/unit/CrcHasherMocks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <array>
#include <cassert>
#include <cstdint>
#include <cstdlib>
#include <string>

Expand Down
2 changes: 2 additions & 0 deletions stubs/dragen/src/host/dragen_api/read_group_list.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#define __READ_GROUP_LIST_HPP__

#include "dragen_exception.hpp"
#include <cstdint>

class ReadGroupList {
public:
const std::string &getReadGroupName(const uint16_t idx) const {
Expand Down

0 comments on commit c166bdb

Please sign in to comment.