Skip to content

Commit

Permalink
add missing include
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: OPENDAP#226
  • Loading branch information
sharkcz committed Jun 21, 2023
1 parent 4295a8a commit 56aed31
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 56aed31

Please sign in to comment.