Skip to content

Commit

Permalink
Merge pull request #226 from tmaklin/gcc-13-headers-patch1
Browse files Browse the repository at this point in the history
Fix header dependency issues when building with GCC 13
  • Loading branch information
marekkokot authored Dec 14, 2023
2 parents 003e5ca + 5dd6264 commit 2049648
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions kmc_core/kff_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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

template<typename T>
void StoreBigEndian(uint8_t* buff, const T& data)
Expand Down
1 change: 1 addition & 0 deletions kmc_tools/kff_info_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdint>

std::string CKFFInfoReader::ReadVarName()
{
Expand Down
1 change: 1 addition & 0 deletions kmc_tools/kff_info_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <limits>
#include <string>
#include <map>
#include <cstdint>


template<typename T>
Expand Down

0 comments on commit 2049648

Please sign in to comment.