Skip to content

Commit

Permalink
add missing include (#227)
Browse files Browse the repository at this point in the history
With GCC 13 the <cstdint> header isn't included thru other headers any
more, thus include it explictly. Otherwise uint8_t or uint32_t type
remain undefined in Vector.cc.

Fixes: #226
  • Loading branch information
sharkcz authored Sep 26, 2023
1 parent 7ae1554 commit 23f7e01
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Vector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

#include <cstring>
#include <cassert>
#include <cstdint>

#include <sstream>
#include <vector>
Expand Down

0 comments on commit 23f7e01

Please sign in to comment.