1234567891011121314151617181920212223 |
- From 7a99bfa784f77be8f160961d25ab63dc2d5ccde0 Mon Sep 17 00:00:00 2001
- From: Vasiliy Glazov <vascom2@gmail.com>
- Date: Tue, 24 Jan 2023 10:42:46 +0300
- Subject: [PATCH] Fix build with GCC13
- Due to changes in GCC13 need fix include.
- ---
- include/radiotray-ng/i_config.hpp | 1 +
- 1 file changed, 1 insertion(+)
- diff --git a/include/radiotray-ng/i_config.hpp b/include/radiotray-ng/i_config.hpp
- index 39ab0af..6e92719 100644
- --- a/include/radiotray-ng/i_config.hpp
- +++ b/include/radiotray-ng/i_config.hpp
- @@ -17,6 +17,7 @@
-
- #pragma once
- #include <string>
- +#include <cstdint>
-
- // easier interface to work with than jsoncpp
-
|