Fixed a bug that occurs in the distribution Linux 5.15.153.1-microsoft-standard-WSL2 (Ubuntu) due to a missing header for uint32_t and other types. This interfered with the build using gcc-13 tools.
A brief excerpt:
/home/igor/OpenLogReplicator/src/common/types.h:26:1: note: ‘uint32_t’ is defined in header ‘<cstdint>’; did you forget to ‘#include <cstdint>’?
25 | #include "../../config.h"
+++ |+#include <cstdint>
26 |
Fixed a bug that occurs in the distribution Linux 5.15.153.1-microsoft-standard-WSL2 (Ubuntu) due to a missing header for
uint32_t
and other types. This interfered with the build using gcc-13 tools. A brief excerpt: