Skip to content

Commit

Permalink
[Server] Added Missing Include Statements
Browse files Browse the repository at this point in the history
In future versions of GCC (GCC-13) I think the cstdint library was no
longer being included within another library. This was causing two
header files to not compile.
  • Loading branch information
AlexandreSinger committed Jun 9, 2024
1 parent 62fa97e commit df5f6f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions vpr/src/server/bytearray.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <vector>
#include <string>
#include <cstring>
#include <cstdint>

namespace comm {

Expand Down
1 change: 1 addition & 0 deletions vpr/src/server/telegramheader.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <string>
#include <cstring>
#include <cstdint>

namespace comm {

Expand Down

0 comments on commit df5f6f5

Please sign in to comment.