add some missed includes

This commit is contained in:
2025-07-31 14:35:58 +02:00
parent ab32731f4d
commit 24df0fc825
3 changed files with 4 additions and 0 deletions

View File

@@ -12,6 +12,8 @@
#include <mutex> #include <mutex>
#include <optional> #include <optional>
#include <type_traits> #include <type_traits>
#include <variant>
#include <functional>
enum class EventHandlingResult { DONE, IGNORE, CONTINUE }; enum class EventHandlingResult { DONE, IGNORE, CONTINUE };

View File

@@ -5,6 +5,7 @@
#ifndef CB_SDK_FONTS_HPP #ifndef CB_SDK_FONTS_HPP
#define CB_SDK_FONTS_HPP #define CB_SDK_FONTS_HPP
#include <cstdint>
#include <array> #include <array>
// Terminess Powerline // Terminess Powerline

View File

@@ -5,6 +5,7 @@
#ifndef SURFACE_HPP #ifndef SURFACE_HPP
#define SURFACE_HPP #define SURFACE_HPP
#include <cassert>
#include <memory> #include <memory>
#include <type_traits> #include <type_traits>