Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]: fails to compile with gcc 13 #911

Closed
etam opened this issue Mar 30, 2023 · 1 comment
Closed

[BUG]: fails to compile with gcc 13 #911

etam opened this issue Mar 30, 2023 · 1 comment
Assignees
Labels
Status-Fixed Ticket is resolved. Type-Defect This is BUG!!!
Milestone

Comments

@etam
Copy link

etam commented Mar 30, 2023

Brief description of the issue

Build fails with

src/librssguard/3rd-party/mimesis/quoted-printable.cpp:30:3: error: 'uint8_t' was not declared in this scope

How to reproduce the bug?

  1. Compile

What was the expected result?

It should build.

What actually happened?

It didn't.

Debug log

Operating system and version

  • OS: openSUSE Tumbleweed
  • RSS Guard version: 4.3.3
@etam etam added the Type-Defect This is BUG!!! label Mar 30, 2023
@etam
Copy link
Author

etam commented Mar 30, 2023

Solution:

Index: rssguard-4.3.3/src/librssguard/3rd-party/mimesis/quoted-printable.cpp
===================================================================
--- rssguard-4.3.3.orig/src/librssguard/3rd-party/mimesis/quoted-printable.cpp
+++ rssguard-4.3.3/src/librssguard/3rd-party/mimesis/quoted-printable.cpp
@@ -19,6 +19,8 @@
.
 #include "quoted-printable.hpp"
.
+#include <cstdint>
+
 using namespace std;
.
 string quoted_printable_decode(string_view in) {

@martinrotter martinrotter added this to the 4.3.4 milestone Apr 4, 2023
@martinrotter martinrotter added the Status-Fixed Ticket is resolved. label Apr 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status-Fixed Ticket is resolved. Type-Defect This is BUG!!!
Projects
None yet
Development

No branches or pull requests

2 participants