Skip to content

Commit

Permalink
libcarla: Fix compile error with gcc >=13
Browse files Browse the repository at this point in the history
The error was:

    LibCarla/source/carla/client/FileTransfer.h:31:57: error: 'uint8_t' was not declared in this scope
       31 |     static bool WriteFile(std::string path, std::vector<uint8_t> content);
          |                                                         ^~~~~~~
  • Loading branch information
wentasah authored and Blyron committed Mar 26, 2024
1 parent a12a137 commit b6b4b4f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions LibCarla/source/carla/client/FileTransfer.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <iostream>
#include <string>
#include <sys/stat.h>
#include <cstdint>

namespace carla {
namespace client {
Expand Down

0 comments on commit b6b4b4f

Please sign in to comment.