Skip to content

Commit df5f6f5

Browse files
[Server] Added Missing Include Statements
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.
1 parent 62fa97e commit df5f6f5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

vpr/src/server/bytearray.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <vector>
77
#include <string>
88
#include <cstring>
9+
#include <cstdint>
910

1011
namespace comm {
1112

vpr/src/server/telegramheader.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
#include <string>
99
#include <cstring>
10+
#include <cstdint>
1011

1112
namespace comm {
1213

0 commit comments

Comments
 (0)