Commit c2ee99c3 authored by Dominik Charousset's avatar Dominik Charousset

Add missing includes, fix build with GCC 13

parent ed3ec1b9
...@@ -57,6 +57,7 @@ is based on [Keep a Changelog](https://keepachangelog.com). ...@@ -57,6 +57,7 @@ is based on [Keep a Changelog](https://keepachangelog.com).
correctly by opening the socket in IPv4 mode. Passing an empty bind address correctly by opening the socket in IPv4 mode. Passing an empty bind address
now defaults to `INADDR6_ANY` (but allowing IPv4 clients) with `INADDR_ANY` as now defaults to `INADDR6_ANY` (but allowing IPv4 clients) with `INADDR_ANY` as
fallback in case opening the socket in IPv6 mode failed. fallback in case opening the socket in IPv6 mode failed.
- Add missing includes that prevented CAF from compiling on GCC 13.
### Deprecated ### Deprecated
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
#include <array> #include <array>
#include <string> #include <string>
#include <cstdint>
#include "caf/detail/core_export.hpp" #include "caf/detail/core_export.hpp"
......
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
#pragma once #pragma once
#include <cstdint>
namespace caf::telemetry { namespace caf::telemetry {
enum class metric_type : uint8_t { enum class metric_type : uint8_t {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment